diff --git a/script/tmls b/script/tmls new file mode 100755 index 0000000..6d38194 --- /dev/null +++ b/script/tmls @@ -0,0 +1,14 @@ +#!/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"