Skip to content

Instantly share code, notes, and snippets.

@naranyala
Created August 10, 2023 02:19
Show Gist options
  • Save naranyala/84a6296bccacdb94b28ad81dc4ddfe02 to your computer and use it in GitHub Desktop.
Save naranyala/84a6296bccacdb94b28ad81dc4ddfe02 to your computer and use it in GitHub Desktop.
# autorun tmux
if [[ -z "$TMUX" ]]; then
tmux has-session -t main 2>/dev/null
if [ "$?" != 0 ]; then
tmux new-session -s main
else
tmux attach-session -t main
fi
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment