14 lines
296 B
QML
14 lines
296 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;
|
|
}
|
|
}
|