Created
August 10, 2023 02:19
-
-
Save naranyala/84a6296bccacdb94b28ad81dc4ddfe02 to your computer and use it in GitHub Desktop.
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
# 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