From 76af49989e18df9383f930e85cf3040d2da08ea4 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Wed, 16 Nov 2011 22:49:35 -0600 Subject: [PATCH] use thicker black lines --- debian/changelog | 1 + usr/bin/byobu-mondrian | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index ba66178a..a99cb1f4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ byobu (4.49) unreleased; urgency=low - add a new, fun script - speed it up a bit - fix up naming, randomization, clean up color printing + - use thicker black lines -- Dustin Kirkland Mon, 14 Nov 2011 17:43:02 -0600 diff --git a/usr/bin/byobu-mondrian b/usr/bin/byobu-mondrian index a967fea6..2e11bdd9 100755 --- a/usr/bin/byobu-mondrian +++ b/usr/bin/byobu-mondrian @@ -72,8 +72,10 @@ while true; do echo "$red $yellow $blue" > /tmp/out # Create some splits tmux new-window -n mondrian "byobu-mondrian color $white_color" - tmux set-option -g pane-active-border-bg default - tmux set-option -g pane-active-border-fg default + tmux set-option -g pane-active-border-bg black + tmux set-option -g pane-active-border-fg black + tmux set-option -g pane-border-bg black + tmux set-option -g pane-border-fg black for i in $(seq 0 $((TOTAL_SPLITS-1))); do case $i in $red) color=$red_color ;; @@ -91,6 +93,7 @@ while true; do esac fi done + tmux select-pane -t 0 sleep 10 tmux kill-window -t "mondrian" done