14 lines
655 B
Bash
Executable file
14 lines
655 B
Bash
Executable file
#!/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)'
|
|
)"
|