mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-10 19:10:48 +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);
|
|
} |