You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
374 B
14 lines
374 B
#!/bin/bash
|
|
|
|
tmux new-session \; \
|
|
split-window -h \; \
|
|
send-keys 'htop' C-m \; \
|
|
split-window -v \; \
|
|
select-pane -t 0 \; \
|
|
split-window -v \; \
|
|
send-keys 'npx tailwindcss -i ./in.css -o ./php/out.css --watch' C-m \; \
|
|
split-window -h \; \
|
|
send-keys 'php -S localhost:9000' C-m \; \
|
|
split-window -v \; \
|
|
select-layout tiled \; \
|
|
select-pane -t 0 \; \
|
|
|