Skip to content

Instantly share code, notes, and snippets.

@ChrisWills
ChrisWills / .screenrc-proj-split
Created November 3, 2011 17:57
A screenrc that sets up a development environment (split screen)
# Gnu Screen example project(split) configuration file
# Author: Christian Wills - cwills.sys@gmail.com
source /home/cwills/.screenrc
chdir /home/cwills/projects/school/cs101/hw1/
screen
title "bash"
split
@ChrisWills
ChrisWills / .screenrc-proj
Created November 3, 2011 17:56
A screenrc that sets up a development environment
# Gnu Screen example project configuration file
# Author: Christian Wills - cwills.sys@gmail.com
source /home/cwills/.screenrc
chdir /home/cwills/projects/school/cs101/hw1/
screen
title "bash"
chdir /home/cwills/projects/school/cs101/hw1/client
@ChrisWills
ChrisWills / .screenrc-mail-example
Created November 3, 2011 17:54
A sample screenrc that opens mutt and newsbeuter
# Gnu Screen configuration for Email and News
# Author: Christian Wills - cwills.sys@gmail.com
# Source main .screenrc for general settings
source /home/cwills/.screenrc
screen mutt
title "mail"
screen newsbeuter
@ChrisWills
ChrisWills / .screenrc-main-example
Created November 3, 2011 17:50
A nice default screenrc
# GNU Screen - main configuration file
# All other .screenrc files will source this file to inherit settings.
# Author: Christian Wills - cwills.sys@gmail.com
# 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'