-
-
Save textarcana/397209 to your computer and use it in GitHub Desktop.
.screenrc
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
# rebind C-a to C-l | |
escape ^Ll | |
log on | |
autodetach on | |
defutf8 on | |
defscrollback 1000 | |
startup_message off | |
screen -t home | |
screen -t ruby irb | |
select 0 | |
windows | |
# note you can reload .screenrc with | |
# C-a : source $HOME/.screenrc |
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
if [ "$SSH_TTY" ]; then | |
# If this is a remote session, then start screen | |
if [ "$TERM" != "screen" ]; then | |
screen -xRRU | |
if [ "$?" = "0" ]; then | |
reset | |
exit | |
fi | |
fi | |
fi |
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
autodetach on | |
caption always '%t %= %C %a' | |
defutf8 on | |
defscrollback 1000 | |
hardstatus alwayslastline "%w" | |
startup_message off | |
screen -t console | |
screen -t hudson sudo su - builder | |
screen -t shell | |
select 1 | |
windows |
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
# note you can reload .screenrc with | |
# C-a : source $HOME/.screenrc |
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
# rebind C-a to C-l | |
escape ^Ll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment