Adding X resource for gaps
authorphillbush <phillbush@cock.li>
Mon, 29 Jun 2020 15:32:02 +0000 (12:32 -0300)
committerphillbush <phillbush@cock.li>
Mon, 29 Jun 2020 15:32:02 +0000 (12:32 -0300)
xmenu.c

diff --git a/xmenu.c b/xmenu.c
index 8a7d511..92b1581 100644 (file)
--- a/xmenu.c
+++ b/xmenu.c
@@ -198,6 +198,9 @@ initresources(void)
        if (XrmGetResource(xdb, "xmenu.width", "*", &type, &xval) == True)
                if ((n = strtol(xval.addr, NULL, 10)) > 0)
                        config.width_pixels = n;
        if (XrmGetResource(xdb, "xmenu.width", "*", &type, &xval) == True)
                if ((n = strtol(xval.addr, NULL, 10)) > 0)
                        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)
                config.background_color = strdup(xval.addr);
        if (XrmGetResource(xdb, "xmenu.foreground", "*", &type, &xval) == True)
        if (XrmGetResource(xdb, "xmenu.background", "*", &type, &xval) == True)
                config.background_color = strdup(xval.addr);
        if (XrmGetResource(xdb, "xmenu.foreground", "*", &type, &xval) == True)