Created
April 1, 2012 03:43
-
-
Save joshuaclayton/2271013 to your computer and use it in GitHub Desktop.
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
window "AppName" do | |
root "~/dev/thoughtbot/app" | |
vpane 75, "vim ." | |
vpane 25 do | |
hpane 75 | |
hpane 25 do | |
vpane 50, "guard" | |
vpane 50, "evergreen serve" | |
end | |
end | |
end |
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
#!/bin/sh | |
tmux new-window -n AppName | |
tmux split-window -p25 -t0 -dv | |
tmux split-window -p25 -t1 -dh | |
tmux split-window -p50 -t2 -dv | |
tmux send-keys -t 0 "cd ~/dev/thoughtbot/app" C-m | |
tmux send-keys -t 1 "cd ~/dev/thoughtbot/app" C-m | |
tmux send-keys -t 2 "cd ~/dev/thoughtbot/app" C-m | |
tmux send-keys -t 3 "cd ~/dev/thoughtbot/app" C-m | |
tmux send-keys -t 0 "vim ." C-m | |
tmux send-keys -t 2 "guard" C-m | |
tmux send-keys -t 3 "evergreen serve" C-m |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment