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