]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh/rc: Replace $use_tmux with $use_multiplexer.
authorSimon Ruderich <simon@ruderich.org>
Tue, 16 Oct 2012 03:42:29 +0000 (05:42 +0200)
committerSimon Ruderich <simon@ruderich.org>
Tue, 16 Oct 2012 03:42:29 +0000 (05:42 +0200)
Allows easy switching between GNU screen, tmux and no multiplexer.

zsh/rc

diff --git a/zsh/rc b/zsh/rc
index f696a34f16efa20fe5bbf7d4c5c708e41ed498c5..ad641b9b3fbab962e721846d8d240b125e59af7d 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -712,8 +712,9 @@ fi
 
 # LOAD ADDITIONAL CONFIGURATION FILES
 
-# Configuration option for rc.local to use tmux. By default screen is used.
-use_tmux=
+# Configuration option for rc.local to use GNU screen/tmux. By default GNU
+# screen is used. Possible values: screen, tmux.
+use_multiplexer=screen
 
 source_config ~/.zsh/rc.local
 
@@ -725,32 +726,32 @@ source_config ~/.zsh/rc.local
 # through ssh.
 if [[ $TERM != dumb && $TERM != linux && -z $STY && -z $TMUX ]]; then
     # Get running detached sessions.
-    if [[ -z $use_tmux ]]; then
+    if [[ $use_multiplexer = screen ]]; then
         session=$(screen -list | grep 'Detached' | awk '{ print $1; exit }')
-    else
+    elif [[ $use_multiplexer = tmux ]]; then
         session=$(tmux list-sessions 2>/dev/null \
                   | sed '/(attached)$/ d; s/^\([0-9]\{1,\}\).*$/\1/; q')
     fi
 
     # As we exec later we have to set the title here.
-    if [[ -z $use_tmux ]]; then
+    if [[ $use_multiplexer = screen ]]; then
         window_preexec "screen"
-    else
+    elif [[ $use_multiplexer = tmux ]]; then
         window_preexec "tmux"
     fi
 
     # Create a new session if none is running.
     if [[ -z $session ]]; then
-        if [[ -z $use_tmux ]]; then
+        if [[ $use_multiplexer = screen ]]; then
             exec screen
-        else
+        elif [[ $use_multiplexer = tmux ]]; then
             exec tmux
         fi
     # Reattach to a running session.
     else
-        if [[ -z $use_tmux ]]; then
+        if [[ $use_multiplexer = screen ]]; then
             exec screen -r $session
-        else
+        elif [[ $use_multiplexer = tmux ]]; then
             exec tmux attach-session -t $session
         fi
     fi