From 61c4b7c29ed6aea2d1d337f9ffc631bbb57578f7 Mon Sep 17 00:00:00 2001 From: Michael Chalupiak Date: Thu, 5 Sep 2024 19:53:04 -0400 Subject: [PATCH] changes --- config.h | 2 +- dmenu.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/config.h b/config.h index acc8457..d6d20b7 100644 --- a/config.h +++ b/config.h @@ -4,7 +4,7 @@ static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { - "monospace:size=10", + "Cascadia Code:size=12", "NotoColorEmoji:pixelsize=8:antialias=true:autohint=true" }; static const unsigned int bgalpha = 0xe0; diff --git a/dmenu.c b/dmenu.c index 34d0943..7b386dc 100644 --- a/dmenu.c +++ b/dmenu.c @@ -896,7 +896,6 @@ read_Xresources(void) { char *type; XrmDatabase xdb = XrmGetStringDatabase(xrm); XrmValue xval; - if (XrmGetResource(xdb, "dmenu.font", "*", &type, &xval) == True) /* font or font set */ fonts[0] = strdup(xval.addr); if (XrmGetResource(xdb, "dmenu.color0", "*", &type, &xval) == True) /* normal background color */