git.fiddlerwoaroof.com
scripts/choose-session
7fa89c89
 #!/usr/bin/env zsh
 
 if tmux list-sessions; then
   echo -n "Choose session? "
   read SESS
   tmux attach -d -t $SESS
 else
   tmux
 fi