瀏覽代碼

Adding X resource for gaps

master
phillbush 4 年之前
父節點
當前提交
eecf9b25ff
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. +3
    -0
      xmenu.c

+ 3
- 0
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.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)


Loading…
取消
儲存