aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Sandoval <osandov@osandov.com>2017-11-03 09:49:10 -0700
committerHiltjo Posthuma <hiltjo@codemadness.org>2017-11-03 20:41:03 +0100
commit64ab2801fbbbcc028c359080ae4bd546fc871f67 (patch)
treefffbfd8865249d554f92bfdecdbf8afdd835b01f
parentf428f3e01a4ced5b1df07ddf913bb022692f8035 (diff)
Set class name on menu window
WM_CLASS is a standard ICCCM property which is used to identify windows. Window managers and compositors use it to allow per-application configurable behavior.
-rw-r--r--dmenu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/dmenu.c b/dmenu.c
index d605ab4..85e5060 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -545,6 +545,7 @@ setup(void)
545 XIM xim; 545 XIM xim;
546 Window w, dw, *dws; 546 Window w, dw, *dws;
547 XWindowAttributes wa; 547 XWindowAttributes wa;
548 XClassHint ch = {"dmenu", "dmenu"};
548#ifdef XINERAMA 549#ifdef XINERAMA
549 XineramaScreenInfo *info; 550 XineramaScreenInfo *info;
550 Window pw; 551 Window pw;
@@ -613,6 +614,7 @@ setup(void)
613 win = XCreateWindow(dpy, parentwin, x, y, mw, mh, 0, 614 win = XCreateWindow(dpy, parentwin, x, y, mw, mh, 0,
614 CopyFromParent, CopyFromParent, CopyFromParent, 615 CopyFromParent, CopyFromParent, CopyFromParent,
615 CWOverrideRedirect | CWBackPixel | CWEventMask, &swa); 616 CWOverrideRedirect | CWBackPixel | CWEventMask, &swa);
617 XSetClassHint(dpy, win, &ch);
616 618
617 /* open input methods */ 619 /* open input methods */
618 xim = XOpenIM(dpy, NULL, NULL, NULL); 620 xim = XOpenIM(dpy, NULL, NULL, NULL);