summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorQC <qball@gmpclient.org>2015-04-04 11:10:41 +0200
committerQC <qball@gmpclient.org>2015-04-04 11:10:41 +0200
commit71cfb6d5531af6a1838aa8517c3ba4dd7f930024 (patch)
tree3834aabf3126ff938f382deedd833a6527901a71 /config
parentf2c4aff37c44839b97b7f6c5e38602af80032134 (diff)
Allow urgent/active color to be set, add dmenu option -u/-a to highlight row.
Diffstat (limited to 'config')
-rw-r--r--config/config.def.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/config/config.def.c b/config/config.def.c
index cbb6ed2b..9ada89ef 100644
--- a/config/config.def.c
+++ b/config/config.def.c
@@ -47,9 +47,11 @@ Settings config = {
/** Font */
.menu_font = "mono 12",
/** Foreground color */
- .menu_fg = "#222222",
- .menu_fg_urgent = "#aa0000",
- .menu_fg_active = "#00aaff",
+ .menu_fg = "#222222",
+ /** Text color used for urgent windows */
+ .menu_fg_urgent = "#ff2222",
+ /** Text color used for active window */
+ .menu_fg_active = "#2222ff",
/** Background color */
.menu_bg = "#f2f1f0",
/** Background color alternate row */