feat: support japanese symbols

This commit is contained in:
David JULIEN 2022-11-01 23:22:57 +01:00
parent ad4ddc40f3
commit 89d751ef3a
1 changed files with 2 additions and 0 deletions

View File

@ -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 },