config.h (1851B) download
1static const char black[] = "#282828";
2static const char blue[] = "#83a598"; // focused window border
3static const char gray2[] = "#282828"; // unfocused window border
4static const char gray3[] = "#3c3836";
5static const char gray4[] = "#282828";
6static const char green[] = "#8ec07c";
7static const char orange[] = "#fe8019";
8static const char pink[] = "#d3869b";
9static const char red[] = "#fb4934";
10static const char white[] = "#ebdbb2";
11static const char yellow[] = "#b8bb26";
12static const char col_borderbar[] = "#1e2122";
13
14static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
15static int user_bh = 10; /* add an defined amount of pixels to the bar height */
16static int centered = 0; /* -c option; centers dmenu on screen */
17static int min_width = 500; /* minimum width when centered */
18
19/* -fn option overrides fonts[0]; default X11 font or font set */
20static const char *prompt = NULL; /* -p option; prompt to the left of input field */
21static const char *dynamic = NULL; /* -dy option; dynamic command to run on input change */
22static const char *fonts[] = {"Monaco:size=9"};
23static const char *colors[][3] = {
24 /* fg bg border */
25 [SchemeNorm] = {white, gray3, blue},
26 [SchemeSel] = {gray4, blue, gray3},
27 [SchemeOut] = {gray2, red, gray3},
28
29 [SchemeSelHighlight] = {blue, gray4},
30 [SchemeNormHighlight] = {gray3, white},
31};
32
33/* -l and -g options; controls number of lines and columns in grid if > 0 */
34static unsigned int lines = 0;
35static unsigned int columns = 0;
36
37/*
38 * Characters not considered part of a word while deleting words
39 * for example: " /?\"&[]"
40 */
41static const char worddelimiters[] = " ";
42
43/* Size of the window border */
44static unsigned int border_width = 2;