summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-12 12:08:51 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-12 12:08:51 +0000
commit7ec5be30df05141b6a3153b910db95e64de5c840 (patch)
treee6ac67afe1699cd6125218753571cfb93255bcaf /tmux.c
parentffa8dcc4da498ee528786c47b58239d06790fa73 (diff)
set status, status-fg, status-bg.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index 3a38c3af..af28548c 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.29 2007-10-04 11:52:03 nicm Exp $ */
+/* $Id: tmux.c,v 1.30 2007-10-12 12:08:51 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -40,6 +40,7 @@ volatile sig_atomic_t sigterm;
int debug_level;
int prefix_key = META;
u_int status_lines;
+u_char status_colour;
char *default_command;
void sighandler(int);
@@ -195,6 +196,7 @@ main(int argc, char **argv)
log_open(stderr, LOG_USER, debug_level);
status_lines = 1;
+ status_colour = 0x02;
shell = getenv("SHELL");
if (shell == NULL || *shell == '\0')