16 lines
367 B
QML
16 lines
367 B
QML
|
|
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");
|
||
|
|
}
|
||
|
|
}
|