Created
September 20, 2010 19:20
-
-
Save AaronRustad/588482 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shell /bin/bash | |
#term xterm-256color | |
term xterm | |
# terminfo and termcap for nice 256 color terminal | |
# # allow bold colors - necessary for some reason | |
attrcolor b ".I" | |
# # tell screen how to set colors. AB = background, AF=foreground | |
termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm' | |
defbce "on" | |
# | |
startup_message off | |
defscrollback 5000 | |
hardstatus on | |
hardstatus alwayslastline | |
# greyscale window list with datetime at right | |
hardstatus string '%{= dK}%-Lw%{= dW}%50>%n%f* %t%{= dK}%+Lw%< %{= kG}%-=%D %d %M %Y %c:%s%{-}' | |
screen -t database 5 | |
stuff "clear\012" | |
screen -t logs 4 | |
stuff "clear\012" | |
screen -t consl 3 | |
stuff "clear\012" | |
screen -t tests 2 | |
screen -t bash 1 | |
screen -t server 0 | |
defscrollback 5000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment