hysteria

ii wrapper script
git clone git://git.2f30.org/hysteria
Log | Files | Refs | README | LICENSE

commit df1660e71f6f8937498e7fe2691778c631209340
parent a0d3d1bd8ab349cc3f35df93e378e8b7199117cc
Author: sin <sin@2f30.org>
Date:   Mon, 14 Apr 2014 23:22:20 +0100

Resize pane to 1%

Diffstat:
Mhysteria | 4++--
Mmonitor | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/hysteria b/hysteria @@ -23,7 +23,7 @@ connectserver() { tmux new-window "ii -i irc -s $host -n $nick -f $fullname" waitfile "irc/$host/out" tmux new-window "tail -f irc/$host/out | ./hiii" - tmux split-window "cat > irc/$host/in" + tmux split-window -p 1 "cat > irc/$host/in" tmux rename-window "$host" } @@ -34,7 +34,7 @@ join() { echo "/join $c" > "irc/$host/in" waitfile "irc/$host/$c/out" tmux new-window "tail -f irc/$host/$c/out | ./hiii" - tmux split-window "cat > irc/$host/$c/in" + tmux split-window -p 1 "cat > irc/$host/$c/in" tmux rename-window "$c" done } diff --git a/monitor b/monitor @@ -21,7 +21,7 @@ while :; do done if test $found -eq 0; then tmux new-window "tail -f $n | ./hiii" - tmux split-window "cat > $(dirname $n)/in" + tmux split-window -p 1 "cat > $(dirname $n)/in" tmux rename-window "$title" fi done