Fixed notification server to actually start a server

This commit is contained in:
2025-09-02 18:18:00 -04:00
parent afacce3708
commit 55a97da636

View File

@@ -4,6 +4,14 @@ import Quickshell
import Quickshell.Services.Notifications import Quickshell.Services.Notifications
Singleton { Singleton {
readonly property list<Notification> notifications: NotificationServer.trackedNotifications.values readonly property list<Notification> notifications: server.trackedNotifications.values
readonly property int amountNotifications: notifications.length readonly property int amountNotifications: notifications.length
NotificationServer {
id: server
onNotification: notif => {
notif.tracked = true;
}
}
} }