dwm-flexipatch-zombie/patch/focusmaster.c

13 lines
140 B
C
Raw Permalink Normal View History

2021-06-10 23:20:40 -04:00
void
focusmaster(const Arg *arg)
{
Client *c;
if (selmon->nmaster < 1)
return;
c = nexttiled(selmon->clients);
if (c)
focus(c);
}