#!/bin/sh # Swaps between sessions. It does this by running `fzf` over the list of # sessions, allowing one to be select which is then attached. FUZZY="fzf" TO_REATTACH="$(tmux ls | $FUZZY)" # TODO: handle the case when nothing was selected. SESSION_ID="$(echo "$TO_REATTACH" | cut -d':' -f1)" tmux attach -d -t $SESSION_ID