My configuration of sxmo fork of suckless dwm.

git clone git://watertao.xyz/programs/sxmo-dwm.git

commit 77660d2dbe8a0dfea6b980d92c136d8e54ad2413
parent d9b1c6d1bbc161aa73f67de4865456e529ddfb74
Author: Maarten van Gompel <proycon@anaproy.nl>
Date:   Tue,  9 Mar 2021 19:57:25 +0100

no need to distinguish fonts according to iswide() anymore

Diffstat:
Mdwm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dwm.c b/dwm.c @@ -1931,7 +1931,7 @@ setup(void) } - if (!drw_fontset_create(drw, fonts + (iswide() ? 1: 0), LENGTH(fonts) - (iswide() ? 1 : 0))) + if (!drw_fontset_create(drw, (const char**) fonts, LENGTH(fonts))) die("no fonts could be loaded."); free(fonts[0]); lrpad = drw->fonts->h;