From a6deec963cadc47852282285116615f62619d87f Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 23 Sep 2025 14:20:14 +1000 Subject: internal: add toasts for gamemode & dnd --- services/Notifs.qml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'services/Notifs.qml') diff --git a/services/Notifs.qml b/services/Notifs.qml index 4dbabf4..2deba75 100644 --- a/services/Notifs.qml +++ b/services/Notifs.qml @@ -20,6 +20,13 @@ Singleton { property bool loaded + onDndChanged: { + if (dnd) + Toaster.toast(qsTr("Do not disturb enabled"), qsTr("Popup notifications are now disabled"), "do_not_disturb_on"); + else + Toaster.toast(qsTr("Do not disturb disabled"), qsTr("Popup notifications are now enabled"), "do_not_disturb_off"); + } + onListChanged: { if (loaded) saveTimer.restart(); -- cgit v1.2.3-freya