quickshell/modules/notifications/NotifServer.qml

16 lines
367 B
QML
Raw Normal View History

pragma ComponentBehavior: Bound
pragma Singleton
import Quickshell.Services.Notifications
import QtQuick
import Quickshell
NotificationServer {
bodyMarkupSupported: true
persistenceSupported: true
imageSupported: true
onNotification: notification => {
notification.tracked = true;
console.log("got notification!!! arf woof");
}
}