diff options
Diffstat (limited to 'modules/drawers/Backgrounds.qml')
| -rw-r--r-- | modules/drawers/Backgrounds.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/drawers/Backgrounds.qml b/modules/drawers/Backgrounds.qml index 70fd48f..94d8dee 100644 --- a/modules/drawers/Backgrounds.qml +++ b/modules/drawers/Backgrounds.qml @@ -1,6 +1,7 @@ import "root:/services" import "root:/config" import "root:/modules/osd" as Osd +import "root:/modules/notifications" as Notifications import Quickshell import QtQuick import QtQuick.Shapes @@ -21,4 +22,11 @@ Shape { startX: root.width startY: (root.height - panels.osd.height) / 2 } + + Notifications.Background { + wrapper: panels.notifications + + startX: root.width + startY: 0 + } } |