summaryrefslogtreecommitdiff
path: root/modules/drawers/Panels.qml
diff options
context:
space:
mode:
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 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
+ }
}