screenrc 1004 B

1234567891011121314151617181920212223242526272829303132333435
  1. hardstatus alwayslastline
  2. # H hostname of the system
  3. # https://www.gnu.org/software/screen/manual/html_node/String-Escapes.html
  4. hardstatus string '%{= kg}[%{G}%H%{g}][%= %{= kw}%-w%{+b yk} %n*%t %{-}%+w %=%{g}][%{W}%c%{g}]'
  5. defscrollback 10000
  6. # http://stackoverflow.com/questions/17868652/screen-how-to-turn-on-alternate-screen
  7. altscreen on
  8. # no welcome message
  9. startup_message off
  10. # all characters cleared will be displayed in the current background color
  11. defbce on
  12. # mouse tracking allows to switch region focus by clicking
  13. mousetrack on
  14. screen ranger
  15. # navigating regions
  16. bind h focus left
  17. bind j focus down
  18. bind k focus up
  19. bind l focus right
  20. # resizing regions
  21. bind -c resize h eval "resize -h -5" "command -c resize"
  22. bind -c resize j eval "resize -v +3" "command -c resize"
  23. bind -c resize k eval "resize -v -3" "command -c resize"
  24. bind -c resize l eval "resize -h +5" "command -c resize"
  25. bind R eval "command -c resize" "echo resize"
  26. # http://aperiodic.net/screen/man:default_key_bindings