dwm/patch/focusmaster.c
2020-08-11 10:25:19 +02:00

13 lines
140 B
C

void
focusmaster(const Arg *arg)
{
Client *c;
if (selmon->nmaster < 1)
return;
c = nexttiled(selmon->clients);
if (c)
focus(c);
}