mirror of
https://github.com/bakkeby/dwm-flexipatch
synced 2024-11-05 00:00:18 +00:00
14 lines
266 B
C
14 lines
266 B
C
void
|
|
unfloatvisible(const Arg *arg)
|
|
{
|
|
Client *c;
|
|
|
|
for (c = selmon->clients; c; c = c->next)
|
|
if (ISVISIBLE(c) && c->isfloating)
|
|
c->isfloating = c->isfixed;
|
|
|
|
if (arg && arg->v)
|
|
setlayout(arg);
|
|
else
|
|
arrange(selmon);
|
|
} |