Created
November 3, 2011 17:57
-
-
Save ChrisWills/1337206 to your computer and use it in GitHub Desktop.
A screenrc that sets up a development environment (split screen)
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
# Gnu Screen example project(split) configuration file | |
# Author: Christian Wills - [email protected] | |
source /home/cwills/.screenrc | |
chdir /home/cwills/projects/school/cs101/hw1/ | |
screen | |
title "bash" | |
split | |
chdir /home/cwills/projects/school/cs101/hw1/client | |
screen bash | |
exec vim client.c | |
title "client" | |
focus | |
chdir /home/cwills/projects/school/cs101/hw1/server | |
screen bash | |
exec vim server.c | |
title "server" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment