dwm

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

commit f0964e0a1d8d23258a3497ef2e18a94ceb067435
parent 7b982174356ddfcaa024a7d669e8cd9bfdecce73
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 @@ -376,6 +376,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);