Auto-spawn more windows

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-05-11 09:59:24 +02:00
parent c26cfe3bc7
commit 483ebb9e1e
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -9,7 +9,14 @@ tmux-agent
if ! (tmux list-sessions); then
tmux new-session -d
tmux rename-window -t 1 home
tmux split-window -h
tmux new-window -n work -t 2
tmux select-window -t 2
tmux split-window -h
tmux select-window -t 1
fi
tmux attach-session -t $(tmux list-sessions | sort -n | head -n1 | cut -d: -f1)