Guest User

Untitled

a guest
Oct 28th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. # GNU Screen - main configuration file
  2. # All other .screenrc files will source this file to inherit settings.
  3. # Author: Christian Wills - cwills.sys@gmail.com
  4.  
  5. # Allow bold colors - necessary for some reason
  6. attrcolor b ".I"
  7.  
  8. # Tell screen how to set colors. AB = background, AF=foreground
  9. termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm'
  10.  
  11. # Enables use of shift-PgUp and shift-PgDn
  12. termcapinfo xterm|xterms|xs|rxvt ti@:te@
  13.  
  14. # Erase background with current bg color
  15. defbce "on"
  16.  
  17. # Enable 256 color term
  18. term xterm-256color
  19.  
  20. # Cache 30000 lines for scroll back
  21. defscrollback 30000
  22.  
  23. # New mail notification
  24. backtick 101 30 15 $HOME/bin/mailstatus.sh
  25.  
  26. hardstatus alwayslastline
  27. # Very nice tabbed colored hardstatus line
  28. hardstatus string '%{= Kd} %{= Kd}%-w%{= Kr}[%{= KW}%n %t%{= Kr}]%{= Kd}%+w %-= %{KG} %H%{KW}|%{KY}%101`%{KW}|%D %M %d %Y%{= Kc} %C%A%{-}'
  29.  
  30. # change command character from ctrl-a to ctrl-b (emacs users may want this)
  31. #escape ^Bb
  32.  
  33. # Hide hardstatus: ctrl-a f
  34. bind f eval "hardstatus ignore"
  35. # Show hardstatus: ctrl-a F
  36. bind F eval "hardstatus alwayslastline"
Add Comment
Please, Sign In to add comment