dwm-flexipatch-zombie/patch/focusmaster.c
2021-06-10 23:20:40 -04:00

13 lines
No EOL
140 B
C

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