blob: fb0622769f5fd0c97cc7d3458348dc2d91a56052 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/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
|