mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-15 00:15:07 +00:00
13 lines
140 B
C
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);
|
||
|
}
|