blob: 21eee9b673398bd81962b6f6ce528ea72cdcb969 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
SDF=faeroes.sdf.org
tmux new-session -A -s sdf -d -n com "ssh -t ${SDF} rcom"
tmux set-option -t sdf:^ default-command "ssh -t ${SDF}"
tmux set-option -t sdf:^ remain-on-exit on
tmux new-window -d -c '~' -n irc "ssh -t ${SDF} rirc"
tmux attach -t sdf
|