applied the proposed monocle patch from the mailinglist - dwm - dynamic window manager HTML git clone https://git.parazyd.org/dwm DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit 940240e5e6f16b292b2f6f37a05282617ce10fe9 DIR parent 08c596ed10b51526ac24538f450b44609f7daf03 HTML Author: Anselm R Garbe <garbeam@gmail.com> Date: Sat, 5 Apr 2008 18:23:31 +0100 applied the proposed monocle patch from the mailinglist Diffstat: M dwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/dwm.c b/dwm.c @@ -1068,7 +1068,7 @@ monocle(void) { Client *c; for(c = clients; c; c = c->next) - if(isvisible(c)) + if((lt->isfloating || !c->floating) && isvisible(c)) resize(c, mox, moy, mow - 2 * c->bw, moh - 2 * c->bw, RESIZEHINTS); }