Created
March 23, 2018 02:53
-
-
Save prandelicious/c8ef5687136fd69edd28289f71f529ca to your computer and use it in GitHub Desktop.
Make tmux your default shell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ -z "$TMUX" ]]; then | |
if tmux has-session 2>/dev/null; then | |
exec tmux attach | |
else | |
exec tmux | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment