2020-06-29 17:20:37 +02:00
|
|
|
static struct Config config = {
|
|
|
|
/* font */
|
|
|
|
.font = "monospace:size=9", /* for regular items */
|
2020-05-26 23:43:45 +02:00
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
/* colors */
|
|
|
|
.background_color = "#FFFFFF",
|
|
|
|
.foreground_color = "#2E3436",
|
|
|
|
.selbackground_color = "#3584E4",
|
|
|
|
.selforeground_color = "#FFFFFF",
|
|
|
|
.separator_color = "#CDC7C2",
|
|
|
|
.border_color = "#E6E6E6",
|
2020-05-26 23:43:45 +02:00
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
/* sizes in pixels */
|
|
|
|
.width_pixels = 130, /* minimum width of a menu */
|
|
|
|
.height_pixels = 25, /* height of a single menu item */
|
|
|
|
.border_pixels = 1, /* menu border */
|
|
|
|
.separator_pixels = 3, /* space around separator */
|
|
|
|
.gap_pixels = 0, /* gap between menus */
|
2020-05-26 23:43:45 +02:00
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
/* the variables below cannot be set by X resources */
|
2020-06-12 16:37:13 +02:00
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
/* geometry of the right-pointing isoceles triangle for submenus */
|
|
|
|
.triangle_width = 3,
|
|
|
|
.triangle_height = 7,
|
2020-06-12 16:37:13 +02:00
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
/* padding of the area around the icon */
|
|
|
|
.iconpadding = 4,
|
|
|
|
};
|