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.qml25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/drawers/Panels.qml b/modules/drawers/Panels.qml
new file mode 100644
index 0000000..fd56f1b
--- /dev/null
+++ b/modules/drawers/Panels.qml
@@ -0,0 +1,25 @@
+import "root:/widgets"
+import "root:/services"
+import "root:/config"
+import "root:/modules/osd" as Osd
+import Quickshell
+import QtQuick
+
+Item {
+ id: root
+
+ required property ShellScreen screen
+ readonly property Osd.Wrapper osd: osd
+
+ anchors.fill: parent
+ anchors.margins: BorderConfig.thickness
+
+ Osd.Wrapper {
+ id: osd
+
+ screen: root.screen
+
+ anchors.verticalCenter: parent.verticalCenter
+ anchors.right: parent.right
+ }
+}