Differences between revisions 1 and 2
Revision 1 as of 2020-01-12 21:11:48
Size: 601
Editor: Sciuro
Comment:
Revision 2 as of 2021-05-20 09:29:40
Size: 725
Editor: Sciuro
Comment:
Deletions are marked like this. Additions are marked like this.
Line 23: Line 23:

= Shortcuts =
== Save buffer to file ==
Ctrl + A and : to get to command mode, then:
{{{
hardcopy -h <filename>
}}}

.screenrc

hardstatus alwayslastline
hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{=kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B}%Y-%m-%d %{W}%c %{g}]'
#hardstatus alwayslastline
#"%{= bw} %{= bc}[%{-}%0c%{= bc}]%{-} [%-Lw%{= bW}%{+b}%50>%n%f* %t%{-b}%{= bw}%+Lw]%<"

# Our warning of activity
activity "Activity in %t(%n)"

# Left Right meta key mods
#ALT-,. and ALT-<>
bindkey "^[<" eval number !echo $WINDOW-1|bc
bindkey "^[>" eval number !echo $WINDOW+1|bc
bindkey "^[," prev
bindkey "^[." next

Shortcuts

Save buffer to file

Ctrl + A and : to get to command mode, then:

hardcopy -h <filename>

Howto/Screen (last edited 2021-05-20 09:29:40 by Sciuro)