Adding X resource for gaps
This commit is contained in:
parent
a3a7383740
commit
eecf9b25ff
3
xmenu.c
3
xmenu.c
|
@ -198,6 +198,9 @@ initresources(void)
|
||||||
if (XrmGetResource(xdb, "xmenu.width", "*", &type, &xval) == True)
|
if (XrmGetResource(xdb, "xmenu.width", "*", &type, &xval) == True)
|
||||||
if ((n = strtol(xval.addr, NULL, 10)) > 0)
|
if ((n = strtol(xval.addr, NULL, 10)) > 0)
|
||||||
config.width_pixels = n;
|
config.width_pixels = n;
|
||||||
|
if (XrmGetResource(xdb, "xmenu.gap", "*", &type, &xval) == True)
|
||||||
|
if ((n = strtol(xval.addr, NULL, 10)) > 0)
|
||||||
|
config.gap_pixels = n;
|
||||||
if (XrmGetResource(xdb, "xmenu.background", "*", &type, &xval) == True)
|
if (XrmGetResource(xdb, "xmenu.background", "*", &type, &xval) == True)
|
||||||
config.background_color = strdup(xval.addr);
|
config.background_color = strdup(xval.addr);
|
||||||
if (XrmGetResource(xdb, "xmenu.foreground", "*", &type, &xval) == True)
|
if (XrmGetResource(xdb, "xmenu.foreground", "*", &type, &xval) == True)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user