dwl

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

commit 25e34e4d0c97165eef627b70b916967852ec1f5e
parent f3c4f723147b40fb1284083f3d7dac988c52d162
Author: Ben Jargowsky <bjargowsky@proton.me>
Date:   Sat,  6 Jan 2024 17:29:39 -0800

Destroy fullscreen node after moving clients off mon

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

diff --git a/dwl.c b/dwl.c @@ -672,9 +672,9 @@ cleanupmon(struct wl_listener *listener, void *data) m->wlr_output->data = NULL; wlr_output_layout_remove(output_layout, m->wlr_output); wlr_scene_output_destroy(m->scene_output); - wlr_scene_node_destroy(&m->fullscreen_bg->node); closemon(m); + wlr_scene_node_destroy(&m->fullscreen_bg->node); free(m); }