1
2
3
4
5
6
7
8
9
|
#!/bin/bash
tmux new-session -s "mail" -d -n "WORKSPACE"
tmux split-window -t mail -h 'rhmail'
tmux split-window -tmail -h 'cemmail'
tmux split-window -t mail -h 'korgmail'
#tmux -L mail select-layout "9ca7,312x49,0,0{96x49,0,0,14,215x49,97,0[215x24,97,0{107x24,97,0,15,107x24,205,0,17},215x24,97,25,16]}"
tmux select-layout -t mail "4c16,381x64,0,0{105x64,0,0,0,275x64,106,0[275x32,106,0{137x32,106,0,4,137x32,244,0,7},275x31,106,33{137x31,106,33,5,137x31,244,33,6}]}"
tmux attach
|