mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-04 22:48:49 +00:00
19 lines
854 B
Fish
Executable File
19 lines
854 B
Fish
Executable File
#!/usr/bin/env fish
|
|
|
|
set selection (sesh list --icons | fzf-tmux -p 80%,70% \
|
|
--no-sort --ansi --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 --icons)' \
|
|
--bind 'ctrl-t:change-prompt(🪟 )+reload(sesh list -t --icons)' \
|
|
--bind 'ctrl-g:change-prompt(⚙️ )+reload(sesh list -c --icons)' \
|
|
--bind 'ctrl-x:change-prompt(📁 )+reload(sesh list -z --icons)' \
|
|
--bind 'ctrl-f:change-prompt(🔎 )+reload(fd -H -d 2 -t d -E .Trash . ~)' \
|
|
--bind 'ctrl-d:execute(tmux kill-session -t {2..})+change-prompt(⚡ )+reload(sesh list --icons)' \
|
|
--preview-window 'right:55%' \
|
|
--preview 'sesh preview {}')
|
|
|
|
if test -n "$selection"
|
|
sesh connect "$selection"
|
|
end
|