dwl

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

commit a760757b82eb10ce09a890e0a5ea1c76de22b144
parent 80c9ad12ba81ab54ac6aad8b413a158d1de52705
Author: Leonardo Hernández Hernández <leohdz172@proton.me>
Date:   Thu,  7 Dec 2023 21:44:53 -0600

set the correct border color when mapping a client

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

diff --git a/dwl.c b/dwl.c @@ -1528,7 +1528,8 @@ mapnotify(struct wl_listener *listener, void *data) } for (i = 0; i < 4; i++) { - c->border[i] = wlr_scene_rect_create(c->scene, 0, 0, bordercolor); + c->border[i] = wlr_scene_rect_create(c->scene, 0, 0, + c->isurgent ? urgentcolor : bordercolor); c->border[i]->node.data = c; }