]> git.armaanb.net Git - dmenu.git/blob - config.def.h
config.mk: improve feature test check
[dmenu.git] / config.def.h
1 /* See LICENSE file for copyright and license details. */
2 /* vim: expandtab
3  */
4 /* Default settings; can be overrided by command line. */
5
6 static Bool topbar = True;                  /* -b  option; if False, dmenu appears at bottom */
7 /* -fn option overrides fonts[0]; default X11 font or font set */
8 static const char *fonts[] = {
9         "monospace:size=10"
10 };
11 static const char *prompt      = NULL;      /* -p  option; prompt to the elft of input field */
12 static const char *normbgcolor = "#222222"; /* -nb option; normal background                 */
13 static const char *normfgcolor = "#bbbbbb"; /* -nf option; normal foreground                 */
14 static const char *selbgcolor  = "#005577"; /* -sb option; selected background               */
15 static const char *selfgcolor  = "#eeeeee"; /* -sf option; selected foreground               */
16 static const char *outbgcolor  = "#00ffff";
17 static const char *outfgcolor  = "#000000";
18 /* -l option; if nonzero, dmenu uses vertical list with given number of lines */
19 static unsigned int lines      = 0;