s/screen-256color/screen/' tmux.conf > tmux.conf.tmp
mv tmux.conf.tmp tmux.conf
fi
+ # Tmux doesn't display a warning if the shell wasn't found!
+ if test ! -x '/bin/zsh'; then
+ echo tmux.conf: removing /bin/zsh as shell
+ sed 's/zsh/sh/' tmux.conf > tmux.conf.tmp
+ mv tmux.conf.tmp tmux.conf
+ fi
fi
# Htop overwrites the comments in its configuration file.
# GENERAL
+# Use Zsh as shell. Tmux does not display a warning if the shell isn't
+# available!
+set-option -g default-shell "/bin/zsh"
+
# Use a larger window history, in lines.
set-option -g history-limit 10000