nosignal-shell/modules/notifications/Content.qml
2 * r + 2 * t 6b64c8a918 feat: basic notifications
Also fix pixel issue with notif area background
Add more log rules to run script
2025-05-10 17:31:04 +10:00

24 lines
396 B
QML

import "root:/widgets"
import "root:/services"
import "root:/config"
import Quickshell
import QtQuick
Column {
id: root
padding: Appearance.padding.large
anchors.bottom: parent.bottom
anchors.right: parent.right
spacing: Appearance.spacing.normal
Repeater {
model: ScriptModel {
values: [...Notifs.list]
}
Notification {}
}
}