15 lines
236 B
Bash
Executable File
15 lines
236 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# tmls - select a tmux session and switch to it
|
|
|
|
set -e
|
|
|
|
line="$(tmux list-sessions | fzf)"
|
|
if [ -z "$line" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
sessionname=$(echo "$line" | awk -F ":" '{print $1}')
|
|
|
|
tmux switch -t "$sessionname"
|