blob: e0ac529ba619ecbfd82e195a35e9cddc3b8125d8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
SESSION_NAME=${1:- }
tmux new-session -d -s "$SESSION_NAME" -n vi
tmux new-window -t "$SESSION_NAME" -n build
tmux new-window -t "$SESSION_NAME" -n git
tmux new-window -t "$SESSION_NAME" -n nix
tmux select-window -t "$SESSION_NAME":vi
tmux attach-session -t "$SESSION_NAME"
|