birdwm

birdwm - mrgrouse's daily driver fork of suckless' dwm. Contains many patches and is currently loosely maintained.
Log | Files | Refs | README | LICENSE

commit 9f72e23d7d74fc1c7372d5fc0834af2eec2d6b86
parent d66f17cf609e460dd213ed4a648d53b0dc217e67
Author: mrgrouse <bdmfegys@duck.com>
Date:   Thu,  3 Jul 2025 21:29:40 -0400

config.def.h: fix broken font name

Diffstat:
Mconfig.def.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.def.h b/config.def.h @@ -13,7 +13,7 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display static const int showsystray = 1; /* 0 means no systray */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "LexendDeca-Bold:pixelsize=18" }; +static const char *fonts[] = { "LexendDeca:pixelsize=18:style=Bold" }; static const unsigned int altmonnum = 1; /* my personal second monitor for remembering which window rules go in which tag and which monitor */ static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444";