From a9abb6d4e0c173e44e42cb6267133ef34c6d023c Mon Sep 17 00:00:00 2001 From: kj_sh604 Date: Sun, 31 May 2026 00:40:13 -0400 Subject: refactor: re-allow home dir fonts --- src/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app.py b/src/app.py index da8f5df..e97b8e6 100644 --- a/src/app.py +++ b/src/app.py @@ -39,6 +39,7 @@ def add_security_headers(resp: Response) -> Response: _FONT_DIRS: list[Path] = [ Path("/usr/share/fonts"), Path("/usr/local/share/fonts"), + Path.home() / ".local" / "share" / "fonts", ] _FONTS_CACHE_TTL_SECONDS = 300 -- cgit v1.2.3