This commit is contained in:
2025-06-18 10:31:29 +01:00
commit cba38937fa
15 changed files with 3324 additions and 0 deletions

7
scripts/.local/bin/tmuxpopup Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env bash
if [ "$(tmux display-message -p -F "#{session-name}")" = "popup" ]; then
tmux detach-client
else
tmux popup -d "#{pane_current_path}" -xC -yC -w90% -h90% -E "tmux attach -t popup || tmux new -s popup"
fi