Change tmux session manager to sesh

closes #4
This commit is contained in:
Alexander Navarro 2024-05-26 11:16:43 -04:00
parent 0b0dbed47a
commit 1810d3bfbc
7 changed files with 41 additions and 44 deletions

14
scripts/fzf-tmux-sessions Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env bash
sesh connect "$(
sesh list | fzf-tmux -p 55%,60% \
--no-sort --border-label ' sesh ' --prompt '⚡ ' \
--header ' ^a all ^t tmux ^g configs ^x zoxide ^d tmux kill ^f find' \
--bind 'tab:down,btab:up' \
--bind 'ctrl-a:change-prompt(⚡ )+reload(sesh list)' \
--bind 'ctrl-t:change-prompt(🪟 )+reload(sesh list -t)' \
--bind 'ctrl-g:change-prompt(⚙️ )+reload(sesh list -c)' \
--bind 'ctrl-x:change-prompt(📁 )+reload(sesh list -z)' \
--bind 'ctrl-f:change-prompt(🔎 )+reload(fd -H -d 2 -t d -E .Trash . ~)' \
--bind 'ctrl-d:execute(tmux kill-session -t {})+change-prompt(⚡ )+reload(sesh list)'
)"