blob: d5d9294343d82b5c5fd2ea185ad5952a53c65297 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
tmux \
new-session "go run cmd/daemon/main.go -test -db test.db; read" \; \
split-window "sleep 1; go run cmd/client/main.go -u user1@localhost -p test; read" \; \
split-window "sleep 1; go run cmd/client/main.go -u user1@localhost -p test; read" \; \
split-window "sleep 1; go run cmd/client/main.go -u user2@localhost -p test; read" \; \
select-layout tiled;
|