diff options
author | Joe <bousset.rudy@gmail.com> | 2022-08-09 18:48:37 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-08-09 18:48:37 +0200 |
commit | 52dc9edff4ce92572b5dfdd492349939b9b80326 (patch) | |
tree | 8b3171886c5e54254e991bad778e1c8c46b9090a /drw.c | |
parent | Updated to 6.3 (diff) | |
download | dwm-52dc9edff4ce92572b5dfdd492349939b9b80326.tar.gz dwm-52dc9edff4ce92572b5dfdd492349939b9b80326.tar.bz2 dwm-52dc9edff4ce92572b5dfdd492349939b9b80326.tar.xz dwm-52dc9edff4ce92572b5dfdd492349939b9b80326.tar.zst dwm-52dc9edff4ce92572b5dfdd492349939b9b80326.zip |
dwm+picom transparency fix
Diffstat (limited to 'drw.c')
-rw-r--r-- | drw.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -203,6 +203,7 @@ 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 |