diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-13 14:58:57 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-13 14:58:57 +0000 |
| commit | b2318bae725de4055c0466e3f1858f51b22e37fe (patch) | |
| tree | 44645ccbe2312faffb694202919026c414b626cb /dev-tmux | |
Diffstat (limited to 'dev-tmux')
| -rwxr-xr-x | dev-tmux | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dev-tmux b/dev-tmux new file mode 100755 index 0000000..e0ac529 --- /dev/null +++ b/dev-tmux @@ -0,0 +1,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" |