dots/.stversions/notifications/Notifications~20250605-105246.qml
2025-06-07 04:01:14 -04:00

23 lines
433 B
QML

pragma Singleton
import QtQuick
import Quickshell
import Quickshell.Services.Notifications
Singleton {
property alias notificationServer: notifServer
NotificationServer {
id: notifServer
actionsSupported: true
persistenceSupported: true
}
Connections {
target: notifServer
function onNotification(notification) {
notification.tracked = true;
}
}
}