/ scripts / tmuxinit.sh
tmuxinit.sh
 1  #!/usr/bin/env bash
 2  
 3  tmux new-session \
 4          -c "${HOME}" \
 5          -s Beta \
 6          -d
 7  
 8  tmux new-session \
 9          -c "${HOME}" \
10          -s Alpha \
11          -d
12  tmux new-window \
13          -c "${HOME}" \
14          -t Alpha:1 \
15          -d
16  
17  tmux attach-session \
18          -t Alpha