From: Anselm R Garbe Date: Sat, 5 Apr 2008 17:23:31 +0000 (+0100) Subject: applied the proposed monocle patch from the mailinglist X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=940240e5e6f16b292b2f6f37a05282617ce10fe9 applied the proposed monocle patch from the mailinglist --- diff --git a/dwm.c b/dwm.c index 9acf30d..e1d3b0a 100644 --- 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); }