From 2ee3676248b79406e570ae9a6c2003e535cd1b9d Mon Sep 17 00:00:00 2001 From: Bastien Dejean Date: Tue, 15 Dec 2015 22:43:55 +0100 Subject: [PATCH] Follow the X conventions regarding the class name The first letter of the class name must be capitalized (cf. `man 7 X`). --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 9d71639..8913e1f 100644 --- a/main.c +++ b/main.c @@ -530,7 +530,7 @@ x_create_windows(int use_ewmh_dock) { /* set class property */ class_hint = XAllocClassHint(); class_hint->res_name = "dzen2"; - class_hint->res_class = "dzen"; + class_hint->res_class = "Dzen"; XSetClassHint(dzen.dpy, dzen.title_win.win, class_hint); XFree(class_hint);