Adding fullscreen, holdbar and unfloatvisible patches
This commit is contained in:
14
patch/unfloatvisible.c
Normal file
14
patch/unfloatvisible.c
Normal file
@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
Reference in New Issue
Block a user