dwm flexipatch

This commit is contained in:
2023-02-25 17:24:22 +01:00
parent 08d4104796
commit ad060cc9d8
317 changed files with 23267 additions and 10454 deletions

View File

@@ -0,0 +1,26 @@
void
transferall(const Arg *arg)
{
Client *c, *n = selmon->clients, *attachfrom = NULL;
int i = 0, nstackclients = 0;
while (n) {
c = n;
n = c->next;
if (!ISVISIBLE(c) || c->isfloating) continue;
if (i >= selmon->nmaster) {
detach(c);
if (!attachfrom) {
attach(c);
} else {
c->next = attachfrom->next;
attachfrom->next = c;
}
attachfrom = c;
nstackclients++;
}
i++;
}
selmon->nmaster = nstackclients;
arrange(selmon);
}