2wm

dual window manager prototype (minimalist dwm with no tags, just one view)
git clone git://git.suckless.org/2wm
Log | Files | Refs | README | LICENSE

commit 654258022071e35a5f866a502c516c116be00704
parent acb00d34583c63832c7136e6cd8b4ccea31e0845
Author: Anselm R. Garbe <arg@suckless.org>
Date:   Mon, 12 Feb 2007 15:31:19 +0100

hmm, dunno why this is done in dwm?
Diffstat:
event.c | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/event.c b/event.c @@ -243,11 +243,8 @@ maprequest(XEvent *e) { if(!XGetWindowAttributes(dpy, ev->window, &wa)) return; - if(wa.override_redirect) { - XSelectInput(dpy, ev->window, - (StructureNotifyMask | PropertyChangeMask)); + if(wa.override_redirect) return; - } if(!getclient(ev->window)) manage(ev->window, &wa); }