aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkj_sh6042026-05-31 00:40:13 -0400
committerkj_sh6042026-05-31 00:40:13 -0400
commita9abb6d4e0c173e44e42cb6267133ef34c6d023c (patch)
tree94b60cbf5c1d5358f3c393dd02ee83bf2b4e49c9
parentcf23fda43083a7374f48fc37433c0a8117779d2d (diff)
refactor: re-allow home dir fonts
-rw-r--r--src/app.py1
1 files changed, 1 insertions, 0 deletions
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