Advertisement
Guest User

.screenrc

a guest
Aug 4th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. # Allow bold colours
  2. attrcolor b ".I"
  3.  
  4. # Cache 50K lines for scrollback
  5. defscrollback 50000
  6.  
  7. # Default windows
  8. screen -t 'bash' 1 bash # Window #1 Bash shell
  9. screen -t 'irssi' 9 sh -c irssi # Window #9 irssi IRC
  10. screen -t 'system monitor' 10 sh -c top # Window #10 process and resource overview with top
  11. select 1 # Default window selection
  12. bind c screen 1 # Start numbering windows at 1, not 0
  13. bind 0 select 10 # Make window 0 window 10 to match keyboard layout
  14.  
  15. # Enables use of Shift+PageUp and Shift+PageDown
  16. termcapinfo xterm|xterms|xs|rxvt ti@:te@
  17.  
  18. # Enable 256 colour xterm
  19. term xterm-256color
  20.  
  21. # Remove screen startup message
  22. startup_message off
  23.  
  24. # Status bar with current host and window/selected window display
  25. hardstatus alwayslastline
  26. hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B} %m-%d %{W}%c %{g}]'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement