Add infra session layout

This commit is contained in:
2024-07-01 23:34:48 +01:00
parent 360f5d0115
commit d874f095a4
2 changed files with 13 additions and 0 deletions

12
layouts/session-infra Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env zsh
tmux rename-window home
for entry in ~/Projects/infra/*; do
if [ ! -d $entry ]; then
continue
fi
tmux new-window -c $entry
tmux rename-window $(basename $entry)
`dirname $0`/window-auto
done