summaryrefslogtreecommitdiff
path: root/bin/tmux_attach
diff options
context:
space:
mode:
Diffstat (limited to 'bin/tmux_attach')
-rwxr-xr-xbin/tmux_attach9
1 files changed, 0 insertions, 9 deletions
diff --git a/bin/tmux_attach b/bin/tmux_attach
deleted file mode 100755
index 564e3bb..0000000
--- a/bin/tmux_attach
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env bash
-
-SESSIONS=$(tmux list-sessions | cut -d':' -f1)
-
-SESSION=$(echo "$SESSIONS" | dmenu -i -p "Session:" | tr -d '[[:space:]]')
-
-[[ -n $SESSION ]] || exit
-
-urxvt -e zsh -c "tmux new-session -A -s $SESSION"