From 55a97da636194cc8295bbfe433a3268f447de0c1 Mon Sep 17 00:00:00 2001 From: Eriq Taing Date: Tue, 2 Sep 2025 18:18:00 -0400 Subject: [PATCH] Fixed notification server to actually start a server --- common/NotificationServer.qml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/common/NotificationServer.qml b/common/NotificationServer.qml index 80a2ac5..d718381 100644 --- a/common/NotificationServer.qml +++ b/common/NotificationServer.qml @@ -4,6 +4,14 @@ import Quickshell import Quickshell.Services.Notifications Singleton { - readonly property list notifications: NotificationServer.trackedNotifications.values + readonly property list notifications: server.trackedNotifications.values readonly property int amountNotifications: notifications.length + + NotificationServer { + id: server + + onNotification: notif => { + notif.tracked = true; + } + } } \ No newline at end of file