diff options
Diffstat (limited to 'dotfiles/system/.profile.d/auto-tmux-session.sh')
| -rw-r--r-- | dotfiles/system/.profile.d/auto-tmux-session.sh | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/dotfiles/system/.profile.d/auto-tmux-session.sh b/dotfiles/system/.profile.d/auto-tmux-session.sh index 2f17085..cd39fab 100644 --- a/dotfiles/system/.profile.d/auto-tmux-session.sh +++ b/dotfiles/system/.profile.d/auto-tmux-session.sh @@ -1,12 +1,8 @@ -#!/bin/sh - # auto-tmux-session.sh # Craig Jennings <c@cjennings.net> -# if TRAMP (ssh dumb terminal), simplify prompt, and start tmux. +# Start tmux automatically when connecting via SSH -# start tmux when logging in via ssh -if [[ -z "$TMUX" ]] && [ "$SSH_CONNECTION" != "" ]; then - export TERM="xterm-mono" - # if dumb terminal (i.e., tramp), then set a simple prompt, otherwise set monochrome TERM and start tmux - tmux attach-session -t "$USER" || tmux new-session -s "$USER" +if [ -z "$TMUX" ] && [ -n "$SSH_CONNECTION" ]; then + export TERM="xterm-mono" + tmux attach-session -t "$USER" || tmux new-session -s "$USER" fi |
