9 lines
245 B
Bash
Executable file
9 lines
245 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-session -d -s Development;
|
|
tmux split-window -t Development;
|
|
tmux new-window -t Development;
|
|
tmux new-window -t Development;
|