configfiles/zsh-autotmux/.zsh/99-autotmux.zsh
2015-10-08 18:08:12 +02:00

5 lines
174 B
Bash

if [ -z "$TMUX" ]; then
if which tmux >/dev/null 2>&1; then
tmux -q has-session && exec tmux attach-session -d || exec tmux new-session
fi
fi