suckless-utils/dwm-flexipatch/patch/focusmaster.c

15 lines
142 B
C
Raw Normal View History

2023-09-14 16:27:51 +02:00
void
focusmaster(const Arg *arg)
{
Client *c;
if (selmon->nmaster < 1)
return;
c = nexttiled(selmon->clients);
if (c)
focus(c);
}