about summary refs log tree commit diff
path: root/dmenu.c
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 /dmenu.c
parentrelease 4.7 (diff)
downloaddmenu-64ab2801fbbbcc028c359080ae4bd546fc871f67.tar.gz
dmenu-64ab2801fbbbcc028c359080ae4bd546fc871f67.tar.bz2
dmenu-64ab2801fbbbcc028c359080ae4bd546fc871f67.zip
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.
Diffstat (limited to 'dmenu.c')
-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)
 	XIM xim;
 	Window w, dw, *dws;
 	XWindowAttributes wa;
+	XClassHint ch = {"dmenu", "dmenu"};
 #ifdef XINERAMA
 	XineramaScreenInfo *info;
 	Window pw;
@@ -613,6 +614,7 @@ setup(void)
 	win = XCreateWindow(dpy, parentwin, x, y, mw, mh, 0,
 	                    CopyFromParent, CopyFromParent, CopyFromParent,
 	                    CWOverrideRedirect | CWBackPixel | CWEventMask, &swa);
+	XSetClassHint(dpy, win, &ch);
 
 	/* open input methods */
 	xim = XOpenIM(dpy, NULL, NULL, NULL);