Introduced Notification server, and added background thorugh quickshell

This commit is contained in:
2025-09-13 23:51:14 -04:00
parent 55a97da636
commit 7081a48426
13 changed files with 263 additions and 10 deletions

View File

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