quickshell-config/modules/notifications/Notification.qml

19 lines
329 B
QML
Raw Normal View History

2025-06-24 07:46:51 +02:00
import Quickshell
import Quickshell.Widgets
import Quickshell.Services.Notifications
import QtQuick
import QtQuick.Layouts
import "../../config"
import "../../services"
Rectangle {
id: root
color: "transparent"
required property Notification.Notif modelData
Text {
text: root.modelData.summary
}
}