From 6e6db08726e3bc274594de6835a01fc10002def9 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 17 May 2025 00:44:00 +0800 Subject: feat: dashboard --- modules/drawers/Panels.qml | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'modules/drawers/Panels.qml') 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 + } } -- cgit v1.2.3-freya