first commit

This commit is contained in:
2026-03-12 12:35:37 +05:30
commit 5441420e71
72 changed files with 8407 additions and 0 deletions

7
scripts/popuptmux.sh Executable file
View File

@@ -0,0 +1,7 @@
width=${2:-80%}
height=${2:-80%}
if [ "$(tmux display-message -p -F "#{session_name}")" = "popup" ];then
tmux detach-client
else
tmux popup -d '#{pane_current_path}' -xC -yC -w$width -h$height -K -E -R "tmux attach -t popup || tmux new -s popup"
fi