dotfiles/.config/suckless/dwm/patch/layout_monocle.c
2024-04-23 07:46:41 +05:00

10 lines
171 B
C

void
monocle(Monitor *m)
{
Client *c;
for (c = nexttiled(m->clients); c; c = nexttiled(c->next))
resize(c, m->wx, m->wy, m->ww - 2 * c->bw, m->wh - 2 * c->bw, 0);
}