Skip to content

Commit

Permalink
Make tmuxit configurable more easily
Browse files Browse the repository at this point in the history
  • Loading branch information
sternenseemann committed Jan 13, 2016
1 parent 232bf43 commit 0f888bb
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions tmuxit
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

0 comments on commit 0f888bb

Please sign in to comment.