Skip to content

Instantly share code, notes, and snippets.

@ChrisWills
Created November 3, 2011 17:57
Show Gist options
  • Save ChrisWills/1337206 to your computer and use it in GitHub Desktop.
Save ChrisWills/1337206 to your computer and use it in GitHub Desktop.
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
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