mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-05 00:00:18 +00:00
21 lines
628 B
C
21 lines
628 B
C
void
|
|
swapfocus(const Arg *arg)
|
|
{
|
|
if (!selmon->sel)
|
|
return;
|
|
if (selmon->pertag->prevclient[selmon->pertag->curtag] != NULL
|
|
&& ISVISIBLE(selmon->pertag->prevclient[selmon->pertag->curtag])) {
|
|
focus(selmon->pertag->prevclient[selmon->pertag->curtag]);
|
|
restack(selmon->pertag->prevclient[selmon->pertag->curtag]->mon);
|
|
}
|
|
else {
|
|
Client *c = NULL;
|
|
for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);
|
|
if (!c)
|
|
for (c = selmon->clients; c && !ISVISIBLE(c); c = c->next);
|
|
if (c) {
|
|
focus(c);
|
|
restack(selmon);
|
|
}
|
|
}
|
|
} |