This commit is contained in:
Chuck
2025-07-23 12:48:15 -05:00
parent e54a25da78
commit 5518810889
2 changed files with 20770 additions and 2 deletions

20768
assets/fonts/6x9.bdf Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -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, '5x8.bdf'))
self.body_font = freetype.Face(os.path.join(font_dir, '5x7.bdf'))
self.title_font = freetype.Face(os.path.join(font_dir, '6x9.bdf'))
self.body_font = freetype.Face(os.path.join(font_dir, '5x8.bdf'))
# Load categories and their data
self.categories = self.of_the_day_config.get('categories', {})