lucy a4a2c89d09 add notifications
use notification blueprint from old version but improve it because its
lowk retarded
2026-01-17 22:47:32 +01:00

15 lines
297 B
QML

pragma ComponentBehavior: Bound
pragma Singleton
import Quickshell.Services.Notifications
import QtQuick
NotificationServer {
bodyMarkupSupported: true
persistenceSupported: true
imageSupported: true
onNotification: notification => {
notification.tracked = true;
}
}