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