15 lines
265 B
Bash
Executable File
15 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SESSION=BearMetalPacker
|
|
|
|
tmux new-session -d -s $SESSION
|
|
tmux new-window -t $SESSION:1 -n "packer"
|
|
|
|
tmux select-window -t $SESSION:1
|
|
tmux send-keys "deno task bdev" C-m
|
|
|
|
tmux split-window -h
|
|
tmux send-keys "deno task fdev" C-m
|
|
|
|
tmux attach -t $SESSION
|