Skip to content

Instantly share code, notes, and snippets.

@lordi
Last active May 29, 2019 21:29
Show Gist options
  • Save lordi/dba83f2cf220c11b7a21 to your computer and use it in GitHub Desktop.
Save lordi/dba83f2cf220c11b7a21 to your computer and use it in GitHub Desktop.
tmux one-liner to show a menu of sessions to attach to
tmux list-sessions | awk -F: '{ print $1 " \"" $2 "\""; }' |\
xargs dialog --ok-label 'Attach' --cancel-label 'New session' --menu tmux 20 80 20 2>/tmp/tmux-session \
&& tmux attach-session -t $(cat /tmp/tmux-session; rm /tmp/tmux-session) \
|| tmux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment