summaryrefslogtreecommitdiff
path: root/modules/drawers/Panels.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-17 00:44:00 +0800
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-17 00:44:00 +0800
commit6e6db08726e3bc274594de6835a01fc10002def9 (patch)
tree272dcaa27b96690c449cdf61c8e4e6ea21559f48 /modules/drawers/Panels.qml
parentlauncher: fallback app icon (diff)
downloadcaelestia-shell-6e6db08726e3bc274594de6835a01fc10002def9.tar.gz
caelestia-shell-6e6db08726e3bc274594de6835a01fc10002def9.tar.bz2
caelestia-shell-6e6db08726e3bc274594de6835a01fc10002def9.zip
feat: dashboard
Diffstat (limited to 'modules/drawers/Panels.qml')
-rw-r--r--modules/drawers/Panels.qml11
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
+ }
}