birdwm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 74c2b23cde33d334becafc02de69b74f8247ae26
parent 0b898b3e33e9f6230f86128e1dd3329fc3b58670
Author: grouse <bdmfegys@duck.com>
Date:   Sun, 26 Nov 2023 13:53:27 -0500

now properly builds

Diffstat:
Mdwm.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dwm.c b/dwm.c @@ -296,7 +296,7 @@ static int xerror(Display *dpy, XErrorEvent *ee); static int xerrordummy(Display *dpy, XErrorEvent *ee); static int xerrorstart(Display *dpy, XErrorEvent *ee); static void xinitvisual(); -static void xrdb(const ARG *arg); +static void xrdb(const Arg *arg); static void zoom(const Arg *arg); /* variables */ @@ -2834,7 +2834,8 @@ xrdb(const Arg *arg) loadxrdb(); int i; for (i = 0; i < LENGTH(colors); i++) - scheme[i] = drw_scm_create(drw, colors[i], 3); + // scheme[i] = drw_scm_create(drw, colors[i], 3); + scheme[i] = drw_scm_create(drw, colors[i], alphas[i], 3); focus(NULL); arrange(NULL); }