summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBert Münnich <ber.t@posteo.de>2019-01-23 20:04:17 +0100
committerBert Münnich <ber.t@posteo.de>2019-01-23 20:04:17 +0100
commitf7fc6637f35e43adffb2e1a20ec511dfb9ca7bd1 (patch)
treeb795c16f9b986a40473593f7fd9078e967415ac6
parente4fb084f26ea680852522e8b9e7769b5a1eee222 (diff)
downloadnsxiv-f7fc6637f35e43adffb2e1a20ec511dfb9ca7bd1.tar.zst
Support X resource entries with Sxiv class name
-rw-r--r--window.c22
1 files changed, 9 insertions, 13 deletions
diff --git a/window.c b/window.c
index 2f7cf7e..7d85c63 100644
--- a/window.c
+++ b/window.c
@@ -29,6 +29,8 @@
#include <X11/Xatom.h>
#include <X11/Xresource.h>
+#define RES_CLASS "Sxiv"
+
enum {
H_TEXT_PAD = 5,
V_TEXT_PAD = 1
@@ -100,12 +102,11 @@ void win_check_wm_support(Display *dpy, Window root)
}
}
-void win_res(Display *dpy, const char *rsc, const char **dst)
+void win_res(Display *dpy, const char *name, const char **dst)
{
char *type;
XrmValue ret;
XrmDatabase db;
- char fullname[256];
char *res_man;
XrmInitialize();
@@ -116,12 +117,7 @@ void win_res(Display *dpy, const char *rsc, const char **dst)
if ((db = XrmGetStringDatabase(res_man)) == NULL)
return;
- snprintf(fullname, sizeof(fullname), ".%s", rsc);
- fullname[sizeof(fullname) - 1] = '\0';
-
- XrmGetResource(db, fullname, "String", &type, &ret);
-
- if (ret.addr != NULL && STREQ(type, "String"))
+ if (XrmGetResource(db, name, name, &type, &ret) && STREQ(type, "String"))
*dst = ret.addr;
}
@@ -148,10 +144,10 @@ void win_init(win_t *win)
if (setlocale(LC_CTYPE, "") == NULL || XSupportsLocale() == 0)
error(0, 0, "No locale support");
- win_res(e->dpy, "background", &WIN_BG_COLOR);
- win_res(e->dpy, "background", &BAR_FG_COLOR);
- win_res(e->dpy, "foreground", &BAR_BG_COLOR);
- win_res(e->dpy, "foreground", &SEL_COLOR);
+ win_res(e->dpy, RES_CLASS ".background", &WIN_BG_COLOR);
+ win_res(e->dpy, RES_CLASS ".background", &BAR_FG_COLOR);
+ win_res(e->dpy, RES_CLASS ".foreground", &BAR_BG_COLOR);
+ win_res(e->dpy, RES_CLASS ".foreground", &SEL_COLOR);
win_init_font(e, BAR_FONT);
@@ -281,7 +277,7 @@ void win_open(win_t *win)
win_set_title(win, "sxiv");
- classhint.res_class = "Sxiv";
+ classhint.res_class = RES_CLASS;
classhint.res_name = options->res_name != NULL ? options->res_name : "sxiv";
XSetClassHint(e->dpy, win->xwin, &classhint);