diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-04-28 18:22:32 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-04-28 18:22:32 +0000 |
commit | 99e54f46c7d3798aea00f5c8c791dd1b66a8d5d7 (patch) | |
tree | 5e334834c2f17ebfde390fa3b5a42a1b26cc4677 /tmux.c | |
parent | 2240199dbf6dd66eaada95ffdb021c844bc23c12 (diff) | |
download | rtmux-99e54f46c7d3798aea00f5c8c791dd1b66a8d5d7.tar.gz rtmux-99e54f46c7d3798aea00f5c8c791dd1b66a8d5d7.tar.bz2 rtmux-99e54f46c7d3798aea00f5c8c791dd1b66a8d5d7.zip |
Make the active pane border have a green foreground instead of
background by default.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -355,8 +355,8 @@ 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-active-border-bg", 8); + options_set_number(so, "pane-active-border-fg", 2); options_set_number(so, "pane-border-bg", 8); options_set_number(so, "pane-border-fg", 8); options_set_number(so, "repeat-time", 500); |