aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h
index c2a23fa..4e5e3e7 100644
--- a/config.def.h
+++ b/config.def.h
@@ -4,8 +4,11 @@
4/* Default settings; can be overrided by command line. */ 4/* Default settings; can be overrided by command line. */
5 5
6static Bool topbar = True; /* -b option; if False, dmenu appears at bottom */ 6static Bool topbar = True; /* -b option; if False, dmenu appears at bottom */
7static const char *font = NULL; /* -fn option; default X11 font or font set */ 7/* -fn option overrides fonts[0]; default X11 font or font set */
8static const char *prompt = NULL; /* -p option; prompt to the elft of input field */ 8static const char *fonts[] = {
9 "monospace:size=10"
10};
11static const char *prompt = NULL; /* -p option; prompt to the elft of input field */
9static const char *normbgcolor = "#222222"; /* -nb option; normal background */ 12static const char *normbgcolor = "#222222"; /* -nb option; normal background */
10static const char *normfgcolor = "#bbbbbb"; /* -nf option; normal foreground */ 13static const char *normfgcolor = "#bbbbbb"; /* -nf option; normal foreground */
11static const char *selbgcolor = "#005577"; /* -sb option; selected background */ 14static const char *selbgcolor = "#005577"; /* -sb option; selected background */
@@ -13,5 +16,4 @@ static const char *selfgcolor = "#eeeeee"; /* -sf option; selected foreground
13static const char *outbgcolor = "#00ffff"; 16static const char *outbgcolor = "#00ffff";
14static const char *outfgcolor = "#000000"; 17static const char *outfgcolor = "#000000";
15/* -l option; if nonzero, dmenu uses vertical list with given number of lines */ 18/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
16static unsigned int lines = 0; 19static unsigned int lines = 0;
17