Initial Notification Daemon Impl

This commit is contained in:
Amaro Lopes
2025-09-22 23:49:22 -03:00
parent 99f7e41ff4
commit 01afd5718c
4 changed files with 79 additions and 8 deletions

View File

@@ -0,0 +1,28 @@
pragma Singleton
import QtQuick
import Quickshell
import Quickshell.Services.Notifications
Singleton {
id: notificationsRoot
NotificationServer {
id: nServer
imageSupported: true
}
Connections {
function onNotification(rapazinho) {
console.log(rapazinho.id)
console.log(nServer.trackedNotifications)
}
target: nServer
}
property var tracked: nServer.trackedNotifications
}