diff options
author | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-08 17:08:45 +0200 |
---|---|---|
committer | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-08 17:08:45 +0200 |
commit | 92e55c7c53cb808b584982ac8f6d69112d713fab (patch) | |
tree | 6e8ad48b16b5baad43c0e5460deafc2d7dc6b741 /main.c | |
parent | c86f131681182258208ef97e81206ccc44e718ee (diff) | |
download | dwm-92e55c7c53cb808b584982ac8f6d69112d713fab.tar.gz |
implemented NET_ACTIVE_WINDOW support
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main.c b/main.c index 5efe599..ded4761 100644 --- a/main.c +++ b/main.c @@ -201,6 +201,7 @@ main(int argc, char *argv[]) wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False); netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False); netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False); + netatom[NetActiveWindow] = XInternAtom(dpy, "_NET_ACTIVE_WINDOW", False); XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32, PropModeReplace, (unsigned char *) netatom, NetLast); |