dwm

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

commit ba74274371d4585a87d00605c0e6f1c5e4990bfb
parent 4a0aae179f226fe16618cc35f77626e28af8ac8a
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);