From 877c254740e8d1ee7e1e04adad90631b617f1ead Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 11 Mar 2025 15:55:32 +1100 Subject: notifs: make dnd actually work Also change bar icon and hide count when dnd --- src/modules/bar.tsx | 15 +++++++++++++-- src/modules/notifpopups.tsx | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) (limited to 'src/modules') diff --git a/src/modules/bar.tsx b/src/modules/bar.tsx index c2695c4..85d2add 100644 --- a/src/modules/bar.tsx +++ b/src/modules/bar.tsx @@ -459,8 +459,19 @@ const NotifCount = () => ( } > - ); diff --git a/src/modules/notifpopups.tsx b/src/modules/notifpopups.tsx index 0332fa7..d3cbb90 100644 --- a/src/modules/notifpopups.tsx +++ b/src/modules/notifpopups.tsx @@ -19,7 +19,7 @@ export default () => ( let notifsOpen = false; self.hook(notifd, "notified", (self, id) => { - if (notifsOpen) return; + if (notifsOpen || notifd.dontDisturb) return; const notification = notifd.get_notification(id); -- cgit v1.2.3-freya