From 0eb007773521b22bb263845e7ab88f7ce372f2f9 Mon Sep 17 00:00:00 2001 From: ProsperousPotato Date: Wed, 31 Dec 2025 22:55:01 +0000 Subject: fix fullscreen client in tagmon --- dwm.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/dwm.c b/dwm.c index 5053619..281fa61 100644 --- a/dwm.c +++ b/dwm.c @@ -1924,9 +1924,17 @@ tag(const Arg *arg) void tagmon(const Arg *arg) { - if (!selmon->sel || !mons->next) + Client *c = selmon->sel; + if (!c || !mons->next) return; - sendmon(selmon->sel, dirtomon(arg->i)); + if (c->isfullscreen) { + c->isfullscreen = 0; + sendmon(c, dirtomon(arg->i)); + c->isfullscreen = 1; + resizeclient(c, c->mon->mx, c->mon->my, c->mon->mw, c->mon->mh); + XRaiseWindow(dpy, c->win); + } else + sendmon(c, dirtomon(arg->i)); } void -- cgit v1.2.3