all repos — dotfiles @ f158d1fa05f036a187d999c2555d19b322d5ce21

my *nix dotfiles

dmenu/config.h (view raw)

 1static int topbar = 1;                      /* -b  option; if 0, dmenu appears at bottom     */
 2/* -fn option overrides fonts[0]; default X11 font or font set */
 3static const char *fonts[] = {
 4	"SF Mono:style=Semibold:size=14"
 5};
 6static int centered = 1;
 7static const char *prompt      = NULL;     /* -p  option; prompt to the left of input field */
 8static unsigned int lineheight = 35;
 9static const char *colors[SchemeLast][2] = {
10	/*     fg         bg       */
11	[SchemeNorm] = { "#5e646f", "#fafafa" },
12	[SchemeSel] = { "#fafafa", "#5e646f" },
13	[SchemeOut] = { "#000000", "#00ffff" },
14};
15/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
16static unsigned int lines      = 6;
17
18/*
19 * Characters not considered part of a word while deleting words
20 * for example: " /?\"&[]"
21 */
22static const char worddelimiters[] = " ";