Referencing the gap X resource in the manual
[xmenu] / config.h
CommitLineData
8902c43b 1static struct Config config = {
2 /* font */
3 .font = "monospace:size=9", /* for regular items */
fd530f3f 4
8902c43b 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",
fd530f3f 12
8902c43b 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 */
fd530f3f 19
8902c43b 20 /* the variables below cannot be set by X resources */
685ca30d 21
8902c43b 22 /* geometry of the right-pointing isoceles triangle for submenus */
23 .triangle_width = 3,
24 .triangle_height = 7,
685ca30d 25
8902c43b 26 /* padding of the area around the icon */
27 .iconpadding = 4,
28};