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