From 89d751ef3abec67adcdf1dbed7c2361795d7f550 Mon Sep 17 00:00:00 2001 From: David JULIEN Date: Tue, 1 Nov 2022 23:22:57 +0100 Subject: [PATCH] feat: support japanese symbols --- config.def.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.def.h b/config.def.h index d9b45d3..0c0448b 100644 --- a/config.def.h +++ b/config.def.h @@ -9,6 +9,7 @@ static int showbar = 1; /* 0 means no bar */ static int topbar = 1; /* 0 means bottom bar */ static char font[] = "monospace:size=10"; static char symbols[] = "monospace:size=10"; +static char japan[] = "monospace:size=10"; static char dmenufont[] = "monospace:size=10"; static const char *fonts[] = { font }; static char normbgcolor[] = "#222222"; @@ -75,6 +76,7 @@ static const char *termcmd[] = { "st", NULL }; ResourcePref resources[] = { { "font", STRING, &font }, { "symbols", STRING, &symbols }, + { "japan", STRING, &japan }, { "dmenufont", STRING, &dmenufont }, { "background", STRING, &normbgcolor }, { "normforeground", STRING, &normbordercolor },