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

14
dwm/.dwm/patch/zoomswap.c Normal file
View File

@@ -0,0 +1,14 @@
#if !PERTAG_PATCH
static Client *prevzoom = NULL;
#endif // PERTAG_PATCH
Client *
findbefore(Client *c) {
Client *p;
if (!c || c == c->mon->clients)
return NULL;
for (p = c->mon->clients; p && p->next != c; p = p->next);
return p;
}