Add gaps to gapless-grid (properly)

This adjusts both the x and y of each client now.
This commit is contained in:
2024-04-23 15:42:04 +05:30
parent f98982eca6
commit f84237584b

View File

@@ -22,10 +22,10 @@ gaplessgrid(Monitor *m) {
for(i = 0, c = nexttiled(m->clients); c; i++, c = nexttiled(c->next)) {
if(i/rows + 1 > cols - n%cols)
rows = n/cols + 1;
ch = (rows ? m->wh / rows : m->wh);
cx = (m->wx + cn*cw);
cy = (m->wy + rn*ch);
resize(c, cx, cy, cw - 2 * c->bw, ch - 2 * c->bw, False);
ch = (rows ? m->wh / rows : m->wh) - m->gappx;
cx = (m->wx + cn*cw) + m->gappx;
cy = (m->wy + rn*ch) + m->gappx;
resize(c, cx + m->gappx, cy + m->gappx, cw - 2 * c->bw - m->gappx, ch - 2 * c->bw - m->gappx, False);
rn++;
if(rn >= rows) {
rn = 0;