summaryrefslogtreecommitdiff
path: root/bin/tmux_attach
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2016-04-19 15:24:25 +0100
committerUrbain Vaes <urbain@vaes.uk>2016-04-19 15:24:25 +0100
commite146e947c52ac4adbe426b3f893faff1e46ed5f8 (patch)
tree1605bf4eb78cc619988c92632f3cee2a56143fd5 /bin/tmux_attach
parent83bd503208d45fa837348441196dd07223b13e3e (diff)
Use GNU stow for dotfiles management
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"