X-Git-Url: http://git.subgeniuskitty.com/xmenu/.git/blobdiff_plain/8902c43b920e55bb96fc7006e6a10f6a6abf332e..47f3bbaf3cabf5a9612a78525682b53e08121aa2:/config.h diff --git a/config.h b/config.h index 27e9c11..aec217e 100644 --- a/config.h +++ b/config.h @@ -1,6 +1,6 @@ static struct Config config = { - /* font */ - .font = "monospace:size=9", /* for regular items */ + /* font, separate different fonts with comma */ + .font = "monospace:size=9,DejaVuSansMono:size=9", /* colors */ .background_color = "#FFFFFF", @@ -17,12 +17,18 @@ static struct Config config = { .separator_pixels = 3, /* space around separator */ .gap_pixels = 0, /* gap between menus */ - /* the variables below cannot be set by X resources */ + /* + * The variables below cannot be set by X resources. + * Their values must be less than .height_pixels. + */ /* geometry of the right-pointing isoceles triangle for submenus */ .triangle_width = 3, .triangle_height = 7, - /* padding of the area around the icon */ - .iconpadding = 4, + /* the icon size is equal to .height_pixels - .iconpadding * 2 */ + .iconpadding = 2, + + /* area around the icon, the triangle and the separator */ + .horzpadding = 8, };