commit 3511d7c46c84999c22eaff887698a6a207231e0d
parent e414f05d2d09bc214e00bd510e38defb75b7b9b5
Author: Savar <savar95x@gmail.com>
Date: Mon, 2 Feb 2026 20:00:54 +0530
[dwm][patches][nocornermonocle] Fixed minor bug
Updated to exclude floating clients in monocle layout while setting the
atoms (NetWMMaximizedVert, NetWMMaximizedHorz) for monocle clients.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dwm.suckless.org/patches/nocornermonocle/dwm-nocornermonocle-20260112-1dcbe74.diff b/dwm.suckless.org/patches/nocornermonocle/dwm-nocornermonocle-20260112-1dcbe74.diff
@@ -34,7 +34,7 @@ index 8f4fa75..4030b04 100644
+ if (!ISVISIBLE(c)) continue;
+ if (c->isfullscreen) continue;
+
-+ if (isMonocle) { /* set */
++ if (isMonocle && !c->isfloating) { /* set */
+ XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
+ PropModeReplace, (unsigned char *)data, 2);
+ } else { /* delete */