6 lines
162 B
Plaintext
6 lines
162 B
Plaintext
# Add to .bashrc
|
|
|
|
if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then
|
|
exec tmux
|
|
fi
|