From 087f21a47c3cbb5990d2d2895a9ebc1a0667cf42 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Fri, 27 Feb 2015 18:23:41 -0500 Subject: [PATCH] don't focus on hover --- dwm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dwm.c b/dwm.c index 6f43444..dd3bc84 100644 --- a/dwm.c +++ b/dwm.c @@ -842,6 +842,8 @@ enternotify(XEvent *e) { Monitor *m; XCrossingEvent *ev = &e->xcrossing; + return; // jason: added to stop mouse focus + if((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root) return; c = wintoclient(ev->window); -- 1.7.10.4