use notification blueprint from old version but improve it because its lowk retarded
15 lines
297 B
QML
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;
|
|
}
|
|
}
|