diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2025-09-27 12:10:17 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2025-09-27 12:10:17 +0200 |
commit | 93f26863d14666e56e992de3670a77178e66ddf2 (patch) | |
tree | b9a4fb86e83e716cab277a2aae48f68f40c4b659 /dwm.c | |
parent | 74edc27caa65aba9ea8d1fe03d26e3b449f79590 (diff) |
cleanup schemes and colors
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -485,8 +485,10 @@ cleanup(void) cleanupmon(mons); for (i = 0; i < CurLast; i++) drw_cur_free(drw, cursor[i]); - for (i = 0; i < LENGTH(colors); i++) + for (i = 0; i < LENGTH(colors); i++) { + drw_scm_free(drw, scheme[i], 3); free(scheme[i]); + } free(scheme); XDestroyWindow(dpy, wmcheckwin); drw_free(drw); |