aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Pruitt <eric.pruitt@gmail.com>2013-12-11 14:10:08 +0100
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2013-12-11 21:33:52 +0100
commit39f28b18b76b9dc8353ae399cb8a99f13f9de2c2 (patch)
tree0bfda641a1dd29ca15f0d0964d6d051a2d0cd190
parent2738592de6d1b53e1f5aa896c8fd3bb5a4204749 (diff)
downloadst-39f28b18b76b9dc8353ae399cb8a99f13f9de2c2.tar.zst
Set _NET_WM_PID attribute
-rw-r--r--st.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/st.c b/st.c
index 91eb2cc..f883ac1 100644
--- a/st.c
+++ b/st.c
@@ -240,7 +240,7 @@ typedef struct {
Colourmap cmap;
Window win;
Drawable buf;
- Atom xembed, wmdeletewin, netwmname;
+ Atom xembed, wmdeletewin, netwmname, netwmpid;
XIM xim;
XIC xic;
Draw draw;
@@ -2933,6 +2933,7 @@ xinit(void) {
Cursor cursor;
Window parent;
int sw, sh;
+ pid_t thispid = getpid();
if(!(xw.dpy = XOpenDisplay(NULL)))
die("Can't open display\n");
@@ -3027,6 +3028,10 @@ xinit(void) {
xw.netwmname = XInternAtom(xw.dpy, "_NET_WM_NAME", False);
XSetWMProtocols(xw.dpy, xw.win, &xw.wmdeletewin, 1);
+ xw.netwmpid = XInternAtom(xw.dpy, "_NET_WM_PID", False);
+ XChangeProperty(xw.dpy, xw.win, xw.netwmpid, XA_CARDINAL, 32,
+ PropModeReplace, (unsigned char *)&thispid, 1);
+
xresettitle();
XMapWindow(xw.dpy, xw.win);
xhints();