diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-10 12:59:10 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-10 12:59:10 +1000 |
| commit | 6eb216475658dda3f921b176ffd6740fc65784ce (patch) | |
| tree | 0a9e26048df28928399f14fa0359ad85b9bf78e9 /modules/drawers/Panels.qml | |
| parent | lock: fix input dragging (diff) | |
| download | caelestia-shell-6eb216475658dda3f921b176ffd6740fc65784ce.tar.gz caelestia-shell-6eb216475658dda3f921b176ffd6740fc65784ce.tar.bz2 caelestia-shell-6eb216475658dda3f921b176ffd6740fc65784ce.zip | |
internal: add utilities panel base
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 909fc9f..b3fe82c 100644 --- a/modules/drawers/Panels.qml +++ b/modules/drawers/Panels.qml @@ -6,6 +6,7 @@ import "root:/modules/session" as Session import "root:/modules/launcher" as Launcher import "root:/modules/dashboard" as Dashboard import "root:/modules/bar/popouts" as BarPopouts +import "root:/modules/utilities" as Utilities import Quickshell import QtQuick @@ -22,6 +23,7 @@ Item { readonly property Launcher.Wrapper launcher: launcher readonly property Dashboard.Wrapper dashboard: dashboard readonly property BarPopouts.Wrapper popouts: popouts + readonly property Utilities.Wrapper utilities: utilities anchors.fill: parent anchors.margins: Config.border.thickness @@ -93,4 +95,13 @@ Item { return off; } } + + Utilities.Wrapper { + id: utilities + + visibility: root.visibilities.utilities + + anchors.bottom: parent.bottom + anchors.right: parent.right + } } |