From 17942b75cc202b671bc00b5e45eaa190f85d4d5a Mon Sep 17 00:00:00 2001 From: Ryan Date: Sun, 15 Oct 2023 19:04:58 -0400 Subject: [PATCH] fix transparent borders Applies a patch that fixes an issue where compositors make window borders transparent. --- drw.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drw.c b/drw.c index fd3c33c..5e37a17 100644 --- a/drw.c +++ b/drw.c @@ -190,6 +190,8 @@ drw_clr_create(Drw *drw, Clr *dest, const char *clrname) DefaultColormap(drw->dpy, drw->screen), clrname, dest)) die("error, cannot allocate color '%s'", clrname); + + dest->pixel |= 0xff << 24; } /* Wrapper to create color schemes. The caller has to call free(3) on the