From e5046db9289bdb48c8833be245402bdb6f7de814 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Wed, 23 Jul 2025 13:18:52 -0500 Subject: [PATCH] font change --- src/of_the_day_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/of_the_day_manager.py b/src/of_the_day_manager.py index 285677aa..161464d3 100644 --- a/src/of_the_day_manager.py +++ b/src/of_the_day_manager.py @@ -39,8 +39,8 @@ class OfTheDayManager: # Load fonts using freetype font_dir = os.path.join(os.path.dirname(__file__), '..', 'assets', 'fonts') - self.title_font = freetype.Face(os.path.join(font_dir, 'MatrixChunky8X.bdf')) - self.body_font = freetype.Face(os.path.join(font_dir, 'MatrixLight6X.bdf')) + self.title_font = freetype.Face(os.path.join(font_dir, 'ic8x8u.bdf')) + self.body_font = freetype.Face(os.path.join(font_dir, 'MatrixLight6.bdf')) # Log font properties for debugging logger.debug(f"Title font properties: height={self.title_font.size.height}, ascender={self.title_font.size.ascender}, descender={self.title_font.size.descender}")