From: Jakub Czajka Date: Mon, 26 Dec 2022 18:19:45 +0000 (+0100) Subject: Use MesloLG as font. X-Git-Url: https://git.ekhem.eu.org/?a=commitdiff_plain;p=dwm.git Use MesloLG as font. --- diff --git a/config.def.h b/config.def.h index 3a71282..8cc02b9 100644 --- a/config.def.h +++ b/config.def.h @@ -10,7 +10,10 @@ static int horizpadbar = 3; /* horizontal padding for statusbar */ static int vertpadbar = 0; /* vertical padding for statusbar */ static char font[] = "monospace:size=10"; static char dmenufont[] = "monospace:size=10"; -static char *fonts[] = { font }; +static const char *fonts[] = { + "Meslo LG S:size=10", + "Noto Color Emoji:size=8" +}; static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444"; static char normfgcolor[] = "#bbbbbb"; diff --git a/config.h b/config.h index 2947def..63e14b0 100644 --- a/config.h +++ b/config.h @@ -10,7 +10,10 @@ static int horizpadbar = 3; /* horizontal padding for statusbar */ static int vertpadbar = 0; /* vertical padding for statusbar */ static char font[] = "monospace:size=10"; static char dmenufont[] = "monospace:size=10"; -static char *fonts[] = { font }; +static const char *fonts[] = { + "Meslo LG S:size=10", + "Noto Color Emoji:size=8" +}; static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444"; static char normfgcolor[] = "#bbbbbb";