dotfiles/.config/suckless/dwm/patch/layout_monocle.c

10 lines
171 B
C
Raw Normal View History

2024-04-23 04:34:15 +02:00
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);
}