7 lines
203 B
Plaintext
7 lines
203 B
Plaintext
|
#!/usr/bin/env zsh
|
||
|
# the alias, but as a script so it can be started when the terminal starts
|
||
|
|
||
|
setopt LOCAL_OPTIONS ERR_RETURN NO_UNSET PIPE_FAIL
|
||
|
|
||
|
tmux attach -t tastytea || tmux new-session -s tastytea
|