diff options
author | 2010-01-03 12:51:05 +0000 | |
---|---|---|
committer | 2010-01-03 12:51:05 +0000 | |
commit | b9b22aa83303ccf463728d50f9505a51470b3117 (patch) | |
tree | 3f4735bad806835dd51b1b9bfc516eddfa1c0d74 /usr.bin/tmux/tmux.c | |
parent | disk cache mode page (diff) | |
download | wireguard-openbsd-b9b22aa83303ccf463728d50f9505a51470b3117.tar.xz wireguard-openbsd-b9b22aa83303ccf463728d50f9505a51470b3117.zip |
Options to set the colour of the pane borders, with different colours for the
active pane.
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r-- | usr.bin/tmux/tmux.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index edff9be2501..951e2f4b858 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.65 2009/12/14 10:43:41 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.66 2010/01/03 12:51:05 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -339,6 +339,10 @@ main(int argc, char **argv) options_set_number(so, "message-fg", 0); options_set_number(so, "message-limit", 20); options_set_number(so, "mouse-select-pane", 0); + options_set_number(so, "pane-active-border-bg", 2); + options_set_number(so, "pane-active-border-fg", 8); + options_set_number(so, "pane-border-bg", 8); + options_set_number(so, "pane-border-fg", 8); options_set_number(so, "repeat-time", 500); options_set_number(so, "set-remain-on-exit", 0); options_set_number(so, "set-titles", 0); |