1
0
mirror of https://github.com/tmate-io/tmate-ssh-server.git synced 2020-11-18 19:53:51 -08:00
tmate-ssh-server/examples/mxey-start-tmux.sh
2007-10-19 17:15:29 +00:00

11 lines
284 B
Bash

#!/bin/sh
tmux attach
if [[ $? = 1 ]]; then
tmux new-session -d -smain 'exec irssi'
tmux -smain set prefix '^H'
tmux -smain new-window -d -nherrie 'exec sudo herrie -c /home/mxey/etc/herrie/config'
tmux -smain new-window -d 'exec lynx'
exec tmux -smain attach
fi