From: phillbush Date: Tue, 19 May 2020 08:51:21 +0000 (-0300) Subject: Correctly setting WM_CLASS. X-Git-Url: https://git.subgeniuskitty.com/xmenu/.git/commitdiff_plain/d2435fcd5f258e7dfc2993b1b2d0bfedf6ed883e Correctly setting WM_CLASS. --- diff --git a/xmenu.c b/xmenu.c index 8d40ee1..cc19921 100644 --- a/xmenu.c +++ b/xmenu.c @@ -9,6 +9,7 @@ #include #include +#define PROGNAME "xmenu" #define ITEMPREV 0 #define ITEMNEXT 1 @@ -101,6 +102,8 @@ static struct DC dc; /* menu variables */ static struct Menu *rootmenu = NULL; static struct Menu *currmenu = NULL; +static char **menutitle; +static int menutitlecount; /* geometry variables */ static struct Geometry geom; @@ -129,6 +132,9 @@ main(int argc, char *argv[]) argc -= optind; argv += optind; + menutitle = argv; + menutitlecount = argc; + /* open connection to server and set X variables */ if ((dpy = XOpenDisplay(NULL)) == NULL) errx(1, "cannot open display"); @@ -434,7 +440,9 @@ calcscreengeom(void) static void calcmenu(struct Menu *menu) { + static XClassHint classh = {PROGNAME, PROGNAME}; XWindowChanges changes; + XTextProperty textprop; XSizeHints sizeh; XGlyphInfo ext; struct Item *item; @@ -466,6 +474,8 @@ calcmenu(struct Menu *menu) menu->y = screengeom.cursy; else if (screengeom.screenh > menu->h) menu->y = screengeom.screenh - menu->h; + + XStringListToTextProperty(menutitle, menutitlecount, &textprop); } else { /* else, calculate in respect to parent menu */ /* search for the item in parent menu that generates this menu */ @@ -483,6 +493,8 @@ calcmenu(struct Menu *menu) menu->y = menu->parent->y; else if (screengeom.screenh > menu->h) menu->y = screengeom.screenh - menu->h; + + XStringListToTextProperty(&(menu->caller->output), 1, &textprop); } /* update menu geometry */ @@ -492,11 +504,12 @@ calcmenu(struct Menu *menu) changes.y = menu->y; XConfigureWindow(dpy, menu->win, CWWidth | CWHeight | CWX | CWY, &changes); - /* set window manager size hints */ + /* set window manager hints */ sizeh.flags = PMaxSize | PMinSize; sizeh.min_width = sizeh.max_width = menu->w; sizeh.min_height = sizeh.max_height = menu->h; - XSetWMNormalHints(dpy, menu->win, &sizeh); + XSetWMProperties(dpy, menu->win, &textprop, NULL, NULL, 0, &sizeh, + NULL, &classh); /* create pixmap and XftDraw */ menu->pixmap = XCreatePixmap(dpy, menu->win, menu->w, menu->h,