11 lines
284 B
Text
11 lines
284 B
Text
|
#!/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 .
|