5 lines
94 B
Bash
Executable File
5 lines
94 B
Bash
Executable File
session=$(tmux ls | fzf | cut -d: -f1)
|
|
if [ -n "$session" ]; then
|
|
tmux a -t "$session"
|
|
fi
|