mirror of
https://github.com/kossLAN/dots.git
synced 2025-11-04 22:49:50 -05:00
23 lines
433 B
QML
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;
|
|
}
|
|
}
|
|
}
|