2026-01-17 22:47:32 +01:00
|
|
|
pragma ComponentBehavior: Bound
|
|
|
|
|
pragma Singleton
|
|
|
|
|
import Quickshell.Services.Notifications
|
|
|
|
|
import QtQuick
|
2026-01-24 14:12:02 +01:00
|
|
|
import Quickshell.Io
|
2026-01-17 22:47:32 +01:00
|
|
|
|
|
|
|
|
NotificationServer {
|
|
|
|
|
bodyMarkupSupported: true
|
|
|
|
|
persistenceSupported: true
|
|
|
|
|
imageSupported: true
|
|
|
|
|
onNotification: notification => {
|
|
|
|
|
notification.tracked = true;
|
|
|
|
|
}
|
|
|
|
|
}
|