15 lines
236 B
Plaintext
15 lines
236 B
Plaintext
|
#!/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"
|