-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.h
37 lines (31 loc) · 1.04 KB
/
config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
static struct Config config = {
/* word delimiters */
.worddelimiters = " .,/:;\\<>'[]{}()&$?!",
/* CTRL key bindings */
.xpromptctrl = "vcmpn::::aebf::ukhdwAEBF::zZ:",
/* font */
.font = "monospace:size=9",
/* colors */
.background_color = "#000000",
.foreground_color = "#FFFFFF",
.description_color = "#555753",
.hoverbackground_color = "#121212",
.hoverforeground_color = "#FFFFFF",
.hoverdescription_color = "#555753",
.selbackground_color = "#3465A4",
.selforeground_color = "#FFFFFF",
.seldescription_color = "#C5C8C6",
.separator_color = "#555753",
.border_color = "#555753",
/* Default geometry */
.geometryspec = "0x0+0+0",
.gravityspec = "N",
.number_items = 8, /* number of items listed for completion */
.border_pixels = 2, /* prompt border */
.separator_pixels = 3, /* space around separator */
/* history */
.histfile = NULL, /* keep NULL to set history via command-line options */
.histsize = 15, /* history size */
/* if nonzero, indent items on dropdown menu (as in dmenu) */
.indent = 0
};