mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
7 lines
79 B
Bash
7 lines
79 B
Bash
|
#!/bin/sh
|
||
|
if tmux has-session; then
|
||
|
exec tmux attach
|
||
|
else
|
||
|
exec tmux new
|
||
|
fi
|