8 lines
111 B
Bash
Executable file
8 lines
111 B
Bash
Executable file
#!/bin/bash
|
|
|
|
MAIN="main"
|
|
|
|
tmux start-server
|
|
tmux new-session -ds $MAIN
|
|
tmux new-window
|
|
tmux select-window -t 0
|