Referencing the gap X resource in the manual
[xmenu] / config.h
... / ...
CommitLineData
1static struct Config config = {
2 /* font */
3 .font = "monospace:size=9", /* for regular items */
4
5 /* colors */
6 .background_color = "#FFFFFF",
7 .foreground_color = "#2E3436",
8 .selbackground_color = "#3584E4",
9 .selforeground_color = "#FFFFFF",
10 .separator_color = "#CDC7C2",
11 .border_color = "#E6E6E6",
12
13 /* sizes in pixels */
14 .width_pixels = 130, /* minimum width of a menu */
15 .height_pixels = 25, /* height of a single menu item */
16 .border_pixels = 1, /* menu border */
17 .separator_pixels = 3, /* space around separator */
18 .gap_pixels = 0, /* gap between menus */
19
20 /* the variables below cannot be set by X resources */
21
22 /* geometry of the right-pointing isoceles triangle for submenus */
23 .triangle_width = 3,
24 .triangle_height = 7,
25
26 /* padding of the area around the icon */
27 .iconpadding = 4,
28};