Created
December 5, 2010 07:00
-
-
Save swaroopch/728896 to your computer and use it in GitHub Desktop.
A command that scripts a tmux session
This file contains 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/bash | |
function flask-boilerplate-tmux | |
{ | |
# https://github.com/swaroopch/flask-boilerplate | |
BASE="$HOME/code/flask-boilerplate" | |
cd $BASE | |
tmux start-server | |
tmux new-session -d -s flaskboilerplate -n model | |
tmux new-window -t flaskboilerplate:2 -n controller | |
tmux new-window -t flaskboilerplate:3 -n view | |
tmux new-window -t flaskboilerplate:4 -n console | |
tmux new-window -t flaskboilerplate:5 -n tests | |
tmux new-window -t flaskboilerplate:6 -n git | |
tmux send-keys -t flaskboilerplate:1 "cd $BASE/flask_application; vim models.py" C-m | |
tmux send-keys -t flaskboilerplate:2 "cd $BASE/flask_application/controllers; ls" C-m | |
tmux send-keys -t flaskboilerplate:3 "cd $BASE/flask_application/templates; ls" C-m | |
tmux send-keys -t flaskboilerplate:4 "bpython -i play.py" C-m | |
tmux send-keys -t flaskboilerplate:5 "python tests.py" C-m | |
tmux send-keys -t flaskboilerplate:6 "git status" C-m | |
tmux select-window -t flaskboilerplate:1 | |
tmux attach-session -t flaskboilerplate | |
} |
Thank you! I never even noticed send-keys before.
Very nice. Note to others, if you have "set -g base-index 0" which I think is the default, the windows start at 0, not 1.
this is great
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
looks interesting...
what does this do?
the resulting screenshot will be nice to see :)