mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
12 lines
266 B
Bash
Executable File
12 lines
266 B
Bash
Executable File
#!/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 docker
|
|
tmux new-window
|
|
tmux rename-window git
|
|
tmux select-window -t 0
|
|
tmux attach -t $CURRENT_SESSION
|