From 01bebe23c420334e1f87a294b657c1e3848f3238 Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Thu, 7 Jul 2022 01:30:41 +0100 Subject: [PATCH] changed more things Fixed rendering of Japanese text by adding an appropriate font to font2. Might look at not using font2 and just relying fontconfig fallback Although that doesn't appear to be happening now... --- config.def.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index e87508c..f4990ed 100644 --- a/config.def.h +++ b/config.def.h @@ -9,7 +9,8 @@ static char *font = "monospace"; #if FONT2_PATCH /* Spare fonts */ static char *font2[] = { - "Noto Color Emoji:size=8" + "Noto Color Emoji:size=8", + "Noto Sans Mono CJK JP:size=10" /* "Inconsolata for Powerline:pixelsize=12:antialias=true:autohint=true", */ /* "Hack Nerd Font Mono:pixelsize=11:antialias=true:autohint=true", */ };