forked from theixle/aardwolf-tintin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make tmuxit configurable more easily
- Loading branch information
1 parent
232bf43
commit 0f888bb
Showing
1 changed file
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
#!/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. | ||
# 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. | ||
|
||
DIR="/home/adam/tt/aard" | ||
|
||
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 splitw -h -l 159 "tail -fs .1 $DIR/Aardwolf-chats" | ||
tmux splitw -v -l 37 "tt++ -G $DIR/setup.tin;bash -i" | ||
tmux splitw -h -l 68 "tail -fs .1 $DIR/chars" | ||
tmux selectp -t 0 | ||
tmux splitw -v -l 22 'tail -fs .1 /home/adam/tt/aard/minimap' | ||
tmux splitw -v -l 22 "tail -fs .1 $DIR/minimap" | ||
tmux selectp -t 0 | ||
tmux splitw -v -l 14 'tail -fs .1 /home/adam/tt/aard/group' | ||
tmux splitw -v -l 14 "tail -fs .1 $DIR/group" | ||
tmux selectp -t 5 | ||
tmux splitw -v -l 20 'tail -fs .1 /home/adam/tt/aard/quest' | ||
tmux splitw -v -l 20 "tail -fs .1 $DIR/quest" | ||
tmux selectp -t 4 | ||
tmux attach-session -t aardwolf |