use thicker black lines

This commit is contained in:
Dustin Kirkland 2011-11-16 22:49:35 -06:00
commit 76af49989e
2 changed files with 6 additions and 2 deletions

1
debian/changelog vendored
View file

@ -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 <kirkland@ubuntu.com> Mon, 14 Nov 2011 17:43:02 -0600

View file

@ -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