diff options
author | Markus Teich <markus.teich@stusta.mhn.de> | 2013-12-12 18:06:51 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2013-12-16 17:58:26 +0100 |
commit | e68297ed05c989f204a5e074e7528ee105067160 (patch) | |
tree | 40fa86c33f7a152a47ff9b393dbc3b6138dce9ed /config.def.h | |
parent | 06f6bade81fed884641be98812e0a38a48cc8f36 (diff) |
Allow selecting the colors on command line.
Signed-off-by: Christoph Lohmann <20h@r-36.net>
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h index 3a92bd9..ceda9f7 100644 --- a/config.def.h +++ b/config.def.h @@ -2,10 +2,10 @@ /* appearance */ static const char font[] = "-*-*-medium-*-*-*-14-*-*-*-*-*-*-*"; -static const char normbgcolor[] = "#222222"; -static const char normfgcolor[] = "#cccccc"; -static const char selbgcolor[] = "#555555"; -static const char selfgcolor[] = "#ffffff"; +static const char* normbgcolor = "#222222"; +static const char* normfgcolor = "#cccccc"; +static const char* selbgcolor = "#555555"; +static const char* selfgcolor = "#ffffff"; static const char before[] = "<"; static const char after[] = ">"; static const int tabwidth = 200; |