10 lines
300 B
Bash
Executable file
10 lines
300 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
fmt='#{session_id}:|#S|(#{session_attached} attached)'
|
|
{ tmux display-message -p -F "$fmt" && tmux list-sessions -F "$fmt"; } \
|
|
| awk '!seen[$1]++' \
|
|
| column -t -s'|' \
|
|
| fzf -q '$' --reverse --prompt 'switch session: ' -1 \
|
|
| cut -d':' -f1 \
|
|
| xargs tmux switch-client -t
|