dwl

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

commit a21c9378ee7c9b1c4165a2df742a639b7393a322
parent 57fef50310cf5c62cd39827e12c3b3baea95bf78
Author: Devin J. Pohly <djpohly@gmail.com>
Date:   Tue, 21 Jul 2020 18:43:26 -0400

fix segfault on xwayland "appid"

Diffstat:
Mdwl.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/dwl.c b/dwl.c @@ -287,6 +287,8 @@ applyrules(Client *c) if (!(title = c->xdg_surface->toplevel->title)) title = broken; } else { + if (!(appid = c->xwayland_surface->class)) + appid = broken; if (!(title = c->xwayland_surface->title)) title = broken; }