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