Initial commit

This commit is contained in:
Oliver Davies 2025-05-08 21:21:23 +01:00
commit 9bb0b58dfd
15 changed files with 18530 additions and 0 deletions

11
reset Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
tmux list-windows -F '#{window_name} #{window_active}' \
| awk '$2 == 0 {print $1}' \
| xargs -n1 tmux kill-window -t
./.tmux-sessionizer