Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. # GNU Screen - main configuration file
  2. # All other .screenrc files will source this file to inherit settings.
  3. # Author: AJ <astrohckr@gmail.com>
  4. # Credit: based on .screenrc-main-example by Christian Wills - cwills.sys@gmail.com
  5.  
  6. # Auto-detach on hangup
  7. autodetach on
  8.  
  9. # Allow bold colors - necessary for some reason
  10. attrcolor b ".I"
  11.  
  12. # Tell screen how to set colors. AB = background, AF=foreground
  13. termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm'
  14.  
  15. # Enables use of shift-PgUp and shift-PgDn
  16. termcapinfo xterm|xterms|xs|rxvt ti@:te@
  17.  
  18. # Erase background with current bg color
  19. defbce "on"
  20.  
  21. # Enable 256 color term
  22. term xterm-256color
  23.  
  24. # Cache 30000 lines for scroll back
  25. defscrollback 30000
  26.  
  27. hardstatus alwayslastline
  28. # Very nice tabbed colored hardstatus line
  29. 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%{-}'
  30.  
  31. # change command character from ctrl-a to ctrl-b (emacs users may want this)
  32. escape ^Bb
  33.  
  34. # Hide hardstatus: ctrl-a f
  35. bind f eval "hardstatus ignore"
  36. # Show hardstatus: ctrl-a F
  37. bind F eval "hardstatus alwayslastline"
  38.  
  39. # Default Tabs
  40. screen -t tasks
  41. screen -t build
  42. screen -t server
  43. screen -t log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement