FreonLinux/system/dvtm/fullscreen.c
2020-11-29 17:49:10 -08:00

6 lines
135 B
C

static void fullscreen(void)
{
for (Client *c = nextvisible(clients); c; c = nextvisible(c->next))
resize(c, wax, way, waw, wah);
}