From 548e372ca9cf3ae20e921fd27e92c2b45e48c43c Mon Sep 17 00:00:00 2001 From: Trigg Date: Tue, 19 Jul 2022 08:53:26 +0000 Subject: [PATCH] - Fix notification font --- discover_overlay/discover_overlay.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/discover_overlay/discover_overlay.py b/discover_overlay/discover_overlay.py index 4faa7e8..18f68a8 100755 --- a/discover_overlay/discover_overlay.py +++ b/discover_overlay/discover_overlay.py @@ -373,6 +373,10 @@ class Discover: "notification", "border_radius", fallback=8)) self.notification_overlay.set_testing(config.getboolean( "notification", "show_dummy", fallback=False)) + self.font = config.get("notification", "font", fallback=None) + + if self.font: + self.notification_overlay.set_font(self.font) self.notification_overlay.set_monitor(self.get_monitor_index( monitor))