Skip to content

Instantly share code, notes, and snippets.

@prandelicious
Created March 23, 2018 02:53
Show Gist options
  • Save prandelicious/c8ef5687136fd69edd28289f71f529ca to your computer and use it in GitHub Desktop.
Save prandelicious/c8ef5687136fd69edd28289f71f529ca to your computer and use it in GitHub Desktop.
Make tmux your default shell
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