X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=layout.c;h=4b4e908d030ec67a3a1218ed4be30fad9684232a;hb=492c6f10fcf9acf74d84eb3fe005ecf2dd42611a;hp=5a32fd380d0e9761fb118af37175f421d8980b6d;hpb=a730213c3b47397c890eea0df7e03e45d5d38b6d;p=dwm.git diff --git a/layout.c b/layout.c index 5a32fd3..4b4e908 100644 --- a/layout.c +++ b/layout.c @@ -38,18 +38,24 @@ tile(void) { ny = way; if(i < nmaster) { ny += i * mh; - nw = mw - 2 * BORDERPX; - nh = mh - 2 * BORDERPX; + nw = mw - 2 * c->border; + nh = mh; + if(i + 1 == (n < nmaster ? n : nmaster)) /* remainder */ + nh = wah - mh * i; + nh -= 2 * c->border; } else { /* tile window */ nx += mw; - nw = tw - 2 * BORDERPX; - if(th > 2 * BORDERPX) { + nw = tw - 2 * c->border; + if(th > 2 * c->border) { ny += (i - nmaster) * th; - nh = th - 2 * BORDERPX; + nh = th; + if(i + 1 == n) /* remainder */ + nh = wah - th * (i - nmaster); + nh -= 2 * c->border; } - else /* fallback if th <= 2 * BORDERPX */ - nh = wah - 2 * BORDERPX; + else /* fallback if th <= 2 * c->border */ + nh = wah - 2 * c->border; } resize(c, nx, ny, nw, nh, False); i++; @@ -58,10 +64,8 @@ tile(void) { c->isbanned = True; XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y); } - if(!sel || !isvisible(sel)) { - for(c = stack; c && !isvisible(c); c = c->snext); - focus(c); - } + if(!sel || !isvisible(sel)) + focustopvisible(); restack(); } @@ -85,10 +89,8 @@ floating(void) { XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y); } } - if(!sel || !isvisible(sel)) { - for(c = stack; c && !isvisible(c); c = c->snext); - focus(c); - } + if(!sel || !isvisible(sel)) + focustopvisible(); restack(); } @@ -125,7 +127,7 @@ incmasterw(const char *arg) { masterw = MASTERWIDTH; else { i = atoi(arg); - if(waw * (masterw + i) / 1000 >= waw - 2 * BORDERPX + if(waw * (masterw + i) / 1000 >= waw - 2 * BORDERPX || waw * (masterw + i) / 1000 <= 2 * BORDERPX) return; masterw += i; @@ -199,11 +201,9 @@ setlayout(const char *arg) { int i; if(!arg) { - for(i = 0; i < nlayouts && lt != &layout[i]; i++); - if(i == nlayouts - 1) - lt = &layout[0]; - else - lt = &layout[++i]; + lt++; + if(lt == layout + nlayouts) + lt = layout; } else { i = atoi(arg); @@ -218,6 +218,16 @@ setlayout(const char *arg) { } void +togglebar(const char *arg) { + if(bpos == BarOff) + bpos = (BARPOS == BarOff) ? BarTop : BARPOS; + else + bpos = BarOff; + updatebarpos(); + lt->arrange(); +} + +void togglemax(const char *arg) { XEvent ev; @@ -238,13 +248,10 @@ togglemax(const char *arg) { void zoom(const char *arg) { - unsigned int n; Client *c; - if(!sel || lt->arrange != tile || sel->isfloating) + if(!sel || lt->arrange == floating || sel->isfloating) return; - for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next)) - n++; if((c = sel) == nexttiled(clients)) if(!(c = nexttiled(c->next))) return;