all repos — dwm @ 95091dcad461f77a641c1c4fe87d49576b79e3fe

my dwm build

reverted Peters patch to tile, I will discuss the reasons at dwm@
Anselm R. Garbe garbeam@gmail.com
Mon, 01 Oct 2007 21:25:15 +0200
commit

95091dcad461f77a641c1c4fe87d49576b79e3fe

parent

57676994ea53634c3944bcd72c246cc98392564b

1 files changed, 3 insertions(+), 6 deletions(-)

jump to
M dwm.cdwm.c

@@ -646,11 +646,8 @@ XCrossingEvent *ev = &e->xcrossing;

if(ev->mode != NotifyNormal || ev->detail == NotifyInferior) return; - if((c = getclient(ev->window))) { + if((c = getclient(ev->window))) focus(c); - if(ISTILE && !c->isfloating) - restack(); - } else if(ev->window == root) { selscreen = True; focus(NULL);

@@ -1595,7 +1592,7 @@ }

else { /* tile window */ if(i == 1) { ny = way; - nx += mc->w + mc->border; + nx += mc->w + 2 * mc->border; nw = waw - nx - 2 * c->border; } if(i + 1 == n) /* remainder */

@@ -1605,7 +1602,7 @@ nh = th - 2 * c->border;

} resize(c, nx, ny, nw, nh, RESIZEHINTS); if(n > 1 && th != wah) - ny = c->y + c->h + c->border; + ny = c->y + c->h + 2 * c->border; } }