18 lines
329 B
QML
18 lines
329 B
QML
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
|
|
}
|
|
}
|