dwm

Suckless' dwm with my personal patches
git clone https://git.instinctive.eu/dwm.git
Log | Files | Refs | README | LICENSE

commit 78aff63ee612600dfea4d79a0f2e50c3b5457815
parent 5448ff4b616326e0d65092c5f0a0e2bc824a2cd7
Author: Natasha Kerensikova <natacha@instinctive.eu>
Date:   Sun,  2 Mar 2025 12:33:34 +0100

[nat] Avoid color in fallback font

Diffstat:
Mdrw.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/drw.c b/drw.c @@ -353,6 +353,7 @@ drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, unsigned int lp fcpattern = FcPatternDuplicate(drw->fonts->pattern); FcPatternAddCharSet(fcpattern, FC_CHARSET, fccharset); FcPatternAddBool(fcpattern, FC_SCALABLE, FcTrue); + FcPatternAddBool(fcpattern, FC_COLOR, FcFalse); FcConfigSubstitute(NULL, fcpattern, FcMatchPattern); FcDefaultSubstitute(fcpattern);