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

43 lines
873 B
C
Raw Normal View History

2023-09-14 16:27:51 +02:00
void
focusmaster(const Arg *arg)
{
2024-07-08 08:13:30 +02:00
Client *master;
Monitor *m = selmon;
#if FOCUSMASTER_RETURN_PATCH
int i;
#endif // FOCUSMASTER_RETURN_PATCH
2023-09-14 16:27:51 +02:00
2024-07-08 08:13:30 +02:00
if (m->nmaster < 1)
2023-09-14 16:27:51 +02:00
return;
2024-07-08 08:13:30 +02:00
#if !FAKEFULLSCREEN_PATCH
#if FAKEFULLSCREEN_CLIENT_PATCH
if (!m->sel || (m->sel->isfullscreen && m->sel->fakefullscreen != 1 && lockfullscreen))
return;
#else
if (!m->sel || (m->sel->isfullscreen && lockfullscreen))
return;
#endif // FAKEFULLSCREEN_CLIENT_PATCH
#endif // FAKEFULLSCREEN_PATCH
2023-09-14 16:27:51 +02:00
2024-07-08 08:13:30 +02:00
master = nexttiled(m->clients);
2023-09-14 16:27:51 +02:00
2024-07-08 08:13:30 +02:00
if (!master)
return;
#if FOCUSMASTER_RETURN_PATCH
for (i = 0; !(m->tagset[m->seltags] & 1 << i); i++);
i++;
2023-09-14 16:27:51 +02:00
2024-07-08 08:13:30 +02:00
if (m->sel == master) {
if (m->tagmarked[i] && ISVISIBLE(m->tagmarked[i]))
focus(m->tagmarked[i]);
} else {
m->tagmarked[i] = m->sel;
focus(master);
}
#else
focus(master);
#endif // FOCUSMASTER_RETURN_PATCH
restack(m);
}