You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
879 B
19 lines
879 B
#!/bin/bash
|
|
# This is a Tmux script that handles starting up tintin with all of the Aardwolf settings.
|
|
# You will need to change the -x <column> and -y <row> size
|
|
# Also change '/home/adam/tt/aard' to whatever directory you use for the settings.
|
|
# Requires Tmux 1.5 - See http://theixle.dyndns.org for a download link.
|
|
|
|
tmux kill-session -t aardwolf
|
|
tmux new-session -d -s aardwolf -x 189 -y 47
|
|
tmux splitw -h -l 159 'tail -fs .1 /home/adam/tt/aard/Aardwolf-chats'
|
|
tmux splitw -v -l 37 'tt++ -G /home/adam/tt/aard/setup.tin;bash -i'
|
|
tmux splitw -h -l 68 'tail -fs .1 /home/adam/tt/aard/chars'
|
|
tmux selectp -t 0
|
|
tmux splitw -v -l 22 'tail -fs .1 /home/adam/tt/aard/minimap'
|
|
tmux selectp -t 0
|
|
tmux splitw -v -l 14 'tail -fs .1 /home/adam/tt/aard/group'
|
|
tmux selectp -t 5
|
|
tmux splitw -v -l 20 'tail -fs .1 /home/adam/tt/aard/quest'
|
|
tmux selectp -t 4
|
|
tmux attach-session -t aardwolf
|