dwl

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

commit 662e06e68e9bc2c41c3cb90d36c4d9998ff1f958
parent 9d2eb8483b52a7a4858454d557196d83e1a24011
Author: Leonardo Hernández Hernández <leohdz172@protonmail.com>
Date:   Sat, 30 Jul 2022 14:44:17 -0500

check client_from_wlr_surface() returning NULL in urgent()

fix #281

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

diff --git a/dwl.c b/dwl.c @@ -2377,7 +2377,7 @@ urgent(struct wl_listener *listener, void *data) { struct wlr_xdg_activation_v1_request_activate_event *event = data; Client *c = client_from_wlr_surface(event->surface); - if (c != selclient()) { + if (c && c != selclient()) { c->isurgent = 1; printstatus(); }