aboutsummaryrefslogtreecommitdiff
path: root/examples/start-tmux.sh
blob: ee21057c0d42cbfb6aad11f843ec4fe574a97195 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

tmux attach
if [[ $? = 1 ]]; then
    tmux new-session -d -nmain '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