summaryrefslogtreecommitdiff
path: root/fullscreen.c
blob: 7f72ddf7e15d390899e5584e56a0866cd9d64feb (plain)
1
2
3
4
5
static void fullscreen(void)
{
	for (Client *c = nextvisible(clients); c; c = nextvisible(c->next))
		resize(c, wax, way, waw, wah);
}