diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-10 17:31:04 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-10 17:31:04 +1000 |
| commit | 6b64c8a91804058fea99ed6944753758ee92c543 (patch) | |
| tree | 9bf1d152c1f7e2135515e8302c93821d3e29b184 /modules/notifications/Content.qml | |
| parent | launcher: better style (diff) | |
| download | caelestia-shell-6b64c8a91804058fea99ed6944753758ee92c543.tar.gz caelestia-shell-6b64c8a91804058fea99ed6944753758ee92c543.tar.bz2 caelestia-shell-6b64c8a91804058fea99ed6944753758ee92c543.zip | |
feat: basic notifications
Also fix pixel issue with notif area background
Add more log rules to run script
Diffstat (limited to 'modules/notifications/Content.qml')
| -rw-r--r-- | modules/notifications/Content.qml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/modules/notifications/Content.qml b/modules/notifications/Content.qml index 86cef8b..7fdd000 100644 --- a/modules/notifications/Content.qml +++ b/modules/notifications/Content.qml @@ -7,16 +7,18 @@ import QtQuick Column { id: root - // padding: Appearance.padding.large + padding: Appearance.padding.large anchors.bottom: parent.bottom anchors.right: parent.right spacing: Appearance.spacing.normal - StyledRect { - width: 300 - height: 100 - // color: Qt.rgba(255, 0, 0, 0.4) + Repeater { + model: ScriptModel { + values: [...Notifs.list] + } + + Notification {} } } |