pragma Singleton import Quickshell import Quickshell.Services.Notifications Singleton { readonly property list notifications: server.trackedNotifications.values readonly property int amountNotifications: notifications.length NotificationServer { id: server actionsSupported: true onNotification: notif => { notif.tracked = true; } } }