20 lines
625 B
ReStructuredText
20 lines
625 B
ReStructuredText
Make screen behave more like tmux
|
|
#################################
|
|
:date: 2014-02-17 14:11
|
|
:tags: screen, tmux
|
|
|
|
I am using tmux on pretty much all hosts i control but all-too-often i need to
|
|
work on retarded hosts which only have screen installed.
|
|
|
|
I love to use ctrl-b because ctrl-a is the beginning of the line in default
|
|
bash keybindings. Here are my changes in ``~/.screenrc``
|
|
|
|
.. code-block:: bash
|
|
|
|
# use ctrl-b as escape
|
|
escape ^Bb
|
|
# change title with ctrl-b - , (tmux-style)
|
|
bind , title
|
|
# sweet status bar
|
|
caption always "%{= wk} %-w%{= KW} [% %t] %{-}%+w %= | @%H | %l | %Y-%m-%d %c "
|