1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Added a script for tmux windows

This commit is contained in:
2015-07-01 12:34:19 -04:00
parent c406f85a22
commit bad21729bf
2 changed files with 11 additions and 5 deletions

9
tmux.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
CURRENT_SESSION=${PWD##*/}
tmux new-session -d -s $CURRENT_SESSION
tmux send-keys 'vim' 'C-m'
tmux rename-window vim
tmux new-window
tmux rename-window server
tmux select-window -t 0
tmux attach -t $CURRENT_SESSION