quickshell-config/services/Notification.qml

21 lines
376 B
QML
Raw Permalink Normal View History

2025-06-24 07:46:51 +02:00
pragma Singleton
pragma ComponentBehavior: Bound
2025-06-24 15:51:34 +02:00
import QtQuick
2025-06-24 07:46:51 +02:00
import Quickshell
2025-06-24 15:51:34 +02:00
import Quickshell.Io
2025-06-24 07:46:51 +02:00
import Quickshell.Services.Notifications
2025-06-24 15:51:34 +02:00
/**
* Provides extra features not in Quickshell.Services.Notifications:
* - Persistent storage
* - Popup notifications, with timeout
* - Notification groups by app
*/
2025-06-24 07:46:51 +02:00
Singleton {
2025-06-24 15:51:34 +02:00
id: root
NotificationServer {
}
2025-06-24 07:46:51 +02:00
}