Skip to content

Instantly share code, notes, and snippets.

@MarkBennett
Created January 4, 2011 22:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarkBennett/765594 to your computer and use it in GitHub Desktop.
Save MarkBennett/765594 to your computer and use it in GitHub Desktop.
A script I use to quickly setup the tmux session I use for developement
#!/bin/sh
#
# window 0 = irc
# window 1 = development server
# window 2 = vim w/ autotest split
# window 3 = console
# window 4 = remote server
tmux new-session -s litdistco -n irc \; new-window -n server \; new-window -n vim \; split-window -d -p 30 \; new-window -n console \; new-window -n remote
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment