From 82abadcecc7534b4847238ee2a977f33256b0439 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Sun, 26 Jan 2025 11:37:22 +0000 Subject: sh --- scripts/sh/swap-session | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 scripts/sh/swap-session (limited to 'scripts/sh/swap-session') diff --git a/scripts/sh/swap-session b/scripts/sh/swap-session new file mode 100755 index 0000000..1cccdba --- /dev/null +++ b/scripts/sh/swap-session @@ -0,0 +1,12 @@ +#!/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 -- cgit v1.2.1