dwl

My patch set and modifications to dwl
git clone git://git.ethandl.dev/dwl
Log | Files | Refs | README | LICENSE

commit 66828780094280064f5d3c0cb2982d28b0557e9e
parent afacc9b0b50fe9c63700e62f7d2083c6edb9d17b
Author: Leonardo Hernández Hernández <leohdz172@protonmail.com>
Date:   Mon, 12 Dec 2022 10:51:03 -0600

call arrange() or resize() depending on c->isfloating in commitnotify

Diffstat:
Mdwl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dwl.c b/dwl.c @@ -764,7 +764,7 @@ commitnotify(struct wl_listener *listener, void *data) if (c->mon && !wlr_box_empty(&box) && (box.width != c->geom.width - 2 * c->bw || box.height != c->geom.height - 2 * c->bw)) - arrange(c->mon); + c->isfloating ? resize(c, c->geom, 1) : arrange(c->mon); /* mark a pending resize as completed */ if (c->resize && (c->resize <= c->surface.xdg->current.configure_serial