15 lines
413 B
Bash
Executable file
15 lines
413 B
Bash
Executable file
#!/bin/bash
|
|
tmux start-server;
|
|
tmux new-session -d -s Main;
|
|
tmux new-window -t Main;
|
|
tmux new-window -t Main;
|
|
tmux new-window -t Main;
|
|
tmux new-window -t Main;
|
|
tmux new-window -t Main;
|
|
tmux new-session -d -s Development;
|
|
tmux new-window -t Development;
|
|
tmux new-window -t Development;
|
|
tmux new-window -t Development;
|
|
tmux new-window -t Development;
|
|
tmux new-window -t Development;
|
|
tmux new-window -t Development;
|