remove auto-run tmux in bashrc

This commit is contained in:
James Dixon 2021-09-15 03:59:34 -04:00
parent 28bea7e715
commit c0da3c40e8

View File

@ -5,9 +5,9 @@ case $- in
esac esac
# start in tmux session if possible # start in tmux session if possible
if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then # if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then
exec tmux # exec tmux
fi # fi
# history # history
HISTSIZE= ; HISTSIZE= ;