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