dwl

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

commit 2ef5abfb728bbf157641becfe0db4d6e3d57bca8
parent 8076b47cc6eb6019d7c6fb15cc95b2ba6519da92
Author: Leonardo Hernández Hernández <leohdz172@protonmail.com>
Date:   Thu, 16 Jun 2022 15:36:27 -0500

remove unneeded check in focusclient()

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

diff --git a/dwl.c b/dwl.c @@ -1152,7 +1152,7 @@ focusclient(Client *c, int lift) return; } else { Client *w; - if (old->role_data && (w = client_from_wlr_surface(old))) + if ((w = client_from_wlr_surface(old))) for (i = 0; i < 4; i++) wlr_scene_rect_set_color(w->border[i], bordercolor);