diff options
Diffstat (limited to 'modules/drawers/Panels.qml')
| -rw-r--r-- | modules/drawers/Panels.qml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/drawers/Panels.qml b/modules/drawers/Panels.qml index ab5f8de..9bde4b2 100644 --- a/modules/drawers/Panels.qml +++ b/modules/drawers/Panels.qml @@ -3,6 +3,7 @@ import "root:/modules/osd" as Osd import "root:/modules/notifications" as Notifications import "root:/modules/session" as Session import "root:/modules/launcher" as Launcher +import "root:/modules/dashboard" as Dashboard import Quickshell import QtQuick @@ -16,6 +17,7 @@ Item { readonly property Notifications.Wrapper notifications: notifications readonly property Session.Wrapper session: session readonly property Launcher.Wrapper launcher: launcher + readonly property Dashboard.Wrapper dashboard: dashboard anchors.fill: parent anchors.margins: BorderConfig.thickness @@ -58,4 +60,13 @@ Item { anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: parent.bottom } + + Dashboard.Wrapper { + id: dashboard + + visibilities: root.visibilities + + anchors.horizontalCenter: parent.horizontalCenter + anchors.top: parent.top + } } |