10 lines
284 B
Bash
Executable file
10 lines
284 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
tmux new-window -dn scratch
|
|
tmux new-window -dn sculpin
|
|
tmux new-window -dn tailwind
|
|
|
|
tmux send-keys -t sculpin "vendor/bin/sculpin generate --server --watch" Enter
|
|
tmux send-keys -t tailwind "tailwindcss --output source/build/tailwind.css --watch" Enter
|
|
|
|
nvim .
|