summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorQC <qball@gmpclient.org>2015-04-11 12:04:14 +0200
committerQC <qball@gmpclient.org>2015-04-11 12:04:14 +0200
commitc1a8735e246db294f80e9ad51c4bfd43af64b5f4 (patch)
tree9816aa26b44d0d77ba589073bc4e471035c3e6a2 /config
parent27dfb8937d882b6a87bd1997a5dbce32ffbaf6d4 (diff)
Re-enable background/foreground. Make theming method an option.
Diffstat (limited to 'config')
-rw-r--r--config/config.def.c42
1 files changed, 22 insertions, 20 deletions
diff --git a/config/config.def.c b/config/config.def.c
index 5935d002..cfd1657c 100644
--- a/config/config.def.c
+++ b/config/config.def.c
@@ -47,34 +47,36 @@ Settings config = {
/** Font */
.menu_font = "mono 12",
- /** Background color */
- .menu_bg = NULL,
- /** Border color. */
- .menu_bc = NULL,
/** Row colors */
- .color_normal = "#fdf6e3,#002b36,#eee8d5,#586e75,#eee8d5",
- .color_urgent = "#fdf6e3,#dc322f,#eee8d5,#dc322f,#fdf6e3",
- .color_active = "#fdf6e3,#268bd2,#eee8d5,#268bd2,#fdf6e3",
- .color_window = "#fdf6e3,#002b36",
+ // Enable new color
+ .color_enabled = FALSE,
+ .color_normal = "#fdf6e3,#002b36,#eee8d5,#586e75,#eee8d5",
+ .color_urgent = "#fdf6e3,#dc322f,#eee8d5,#dc322f,#fdf6e3",
+ .color_active = "#fdf6e3,#268bd2,#eee8d5,#268bd2,#fdf6e3",
+ .color_window = "#fdf6e3,#002b36",
+ /** Background color */
+ .menu_bg = "#FDF6E3",
+ /** Border color. */
+ .menu_bc = "#002B36",
/** Foreground color */
- .menu_fg = NULL,
+ .menu_fg = "#002B36",
/** Text color used for urgent windows */
- .menu_fg_urgent = NULL,
+ .menu_fg_urgent = "#DC322F",
/** Text color used for active window */
- .menu_fg_active = NULL,
- .menu_bg_urgent = NULL,
- .menu_bg_active = NULL,
+ .menu_fg_active = "#268BD2",
+ .menu_bg_urgent = "#FDF6E3",
+ .menu_bg_active = "#FDF6E3",
/** Background color alternate row */
- .menu_bg_alt = NULL,
+ .menu_bg_alt = "#EEE8D5",
/** Foreground color (selected) */
- .menu_hlfg = NULL,
- .menu_hlfg_urgent = NULL,
- .menu_hlfg_active = NULL,
+ .menu_hlfg = "#EEE8D5",
+ .menu_hlfg_urgent = "#FDF6E3",
+ .menu_hlfg_active = "#FDF6E3",
/** Background color (selected) */
- .menu_hlbg = NULL,
- .menu_hlbg_urgent = NULL,
- .menu_hlbg_active = NULL,
+ .menu_hlbg = "#586E75",
+ .menu_hlbg_urgent = "#DC322F",
+ .menu_hlbg_active = "#268BD2",
/** Terminal to use. (for ssh and open in terminal) */
.terminal_emulator = "x-terminal-emulator",
.ssh_client = "ssh",