mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
10 lines
171 B
C
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);
|
||
|
}
|
||
|
|