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