From 59893b7f44e455b7d0c7753058ce5bf29578e084 Mon Sep 17 00:00:00 2001 From: bbedward Date: Mon, 12 Jan 2026 11:57:42 -0500 Subject: [PATCH] notifications: use Theme.primary to represent do not distrub in bar --- .../Modules/DankBar/Widgets/NotificationCenterButton.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickshell/Modules/DankBar/Widgets/NotificationCenterButton.qml b/quickshell/Modules/DankBar/Widgets/NotificationCenterButton.qml index 007a49c2..1cb1fa0d 100644 --- a/quickshell/Modules/DankBar/Widgets/NotificationCenterButton.qml +++ b/quickshell/Modules/DankBar/Widgets/NotificationCenterButton.qml @@ -19,7 +19,7 @@ BasePill { anchors.centerIn: parent name: SessionData.doNotDisturb ? "notifications_off" : "notifications" size: Theme.barIconSize(root.barThickness, -4) - color: SessionData.doNotDisturb ? Theme.error : (root.isActive ? Theme.primary : Theme.widgetIconColor) + color: SessionData.doNotDisturb ? Theme.primary : (root.isActive ? Theme.primary : Theme.widgetIconColor) } Rectangle { @@ -35,6 +35,6 @@ BasePill { } onRightClicked: { - SessionData.setDoNotDisturb(!SessionData.doNotDisturb) + SessionData.setDoNotDisturb(!SessionData.doNotDisturb); } }