all repos — dotfiles @ a9d88fbd77f9981feebf5d0e6b84f588d239c028

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	"Roboto Mono:style=Medium: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] = { "#121212", "#cbd6e2" },
12	[SchemeSel] = { "#cbd6e2", "#121212" },
13	[SchemeOut] = { "#000000", "#00ffff" },
14};
15/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
16static unsigned int lines      = 5;
17
18/*
19 * Characters not considered part of a word while deleting words
20 * for example: " /?\"&[]"
21 */
22static const char worddelimiters[] = " ";