Skip to content

Instantly share code, notes, and snippets.

@olive42
Created March 25, 2020 10:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olive42/2dc758996e743f99321225913d7da440 to your computer and use it in GitHub Desktop.
Save olive42/2dc758996e743f99321225913d7da440 to your computer and use it in GitHub Desktop.
Automatically attach to tmux session or create one if non-existent
# Add to ~/.zprofile - ZSH-specific? Not sure
tmux has -t scratch &> /dev/null
if [ $? != 0 ]; then
tmux -2 new-session -s scratch -D -d
fi
if [ -z $TMUX ]; then
tmux attach -t scratch -d
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment