6 lines
143 B
Bash
Executable File
6 lines
143 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
if command -v tmux &> /dev/null && [ -z "$TMUX" ]; then
|
|
tmux attach-session -t default || tmux new-session -s default
|
|
fi
|