suckless/dmenu

config.def.h in master
Repositories | Summary | Log | Files | README | LICENSE

config.def.h (1195B) download


 1/* See LICENSE file for copyright and license details. */
 2/* Default settings; can be overriden by command line. */
 3
 4static int topbar = 1;                      /* -b  option; if 0, dmenu appears at bottom     */
 5/* -fn option overrides fonts[0]; default X11 font or font set */
 6static const int user_bh = 0;               /* add an defined amount of pixels to the bar height */
 7
 8static const char *fonts[] = {
 9	"monospace:size=10"
10};
11static const char *prompt      = NULL;      /* -p  option; prompt to the left of input field */
12static const char *dynamic     = NULL;      /* -dy option; dynamic command to run on input change */
13static const char *colors[SchemeLast][2] = {
14	/*     fg         bg       */
15	[SchemeNorm] = { "#bbbbbb", "#222222" },
16	[SchemeSel] = { "#eeeeee", "#005577" },
17	[SchemeSelHighlight] = { "#ffc978", "#005577" },
18	[SchemeNormHighlight] = { "#ffc978", "#222222" },
19	[SchemeOut] = { "#000000", "#00ffff" },
20};
21/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
22static unsigned int lines      = 0;
23
24/*
25 * Characters not considered part of a word while deleting words
26 * for example: " /?\"&[]"
27 */
28static const char worddelimiters[] = " ";