21 lines
376 B
QML
21 lines
376 B
QML
|
pragma Singleton
|
||
|
pragma ComponentBehavior: Bound
|
||
|
|
||
|
import QtQuick
|
||
|
import Quickshell
|
||
|
import Quickshell.Io
|
||
|
import Quickshell.Services.Notifications
|
||
|
|
||
|
/**
|
||
|
* Provides extra features not in Quickshell.Services.Notifications:
|
||
|
* - Persistent storage
|
||
|
* - Popup notifications, with timeout
|
||
|
* - Notification groups by app
|
||
|
*/
|
||
|
Singleton {
|
||
|
id: root
|
||
|
NotificationServer {
|
||
|
|
||
|
}
|
||
|
}
|