diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-13 19:01:00 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-13 19:01:00 +1000 |
| commit | 3fd429c9f30e1b8cffdeca2778c7eb20f8a0647f (patch) | |
| tree | e2c2c8d8e812c7ed960b49686a159b9acaba7b09 /modules/drawers/Panels.qml | |
| parent | notifs: move to drawers (diff) | |
| download | caelestia-shell-3fd429c9f30e1b8cffdeca2778c7eb20f8a0647f.tar.gz caelestia-shell-3fd429c9f30e1b8cffdeca2778c7eb20f8a0647f.tar.bz2 caelestia-shell-3fd429c9f30e1b8cffdeca2778c7eb20f8a0647f.zip | |
session: move to drawers
Diffstat (limited to 'modules/drawers/Panels.qml')
| -rw-r--r-- | modules/drawers/Panels.qml | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/modules/drawers/Panels.qml b/modules/drawers/Panels.qml index 645af21..fb1a9f5 100644 --- a/modules/drawers/Panels.qml +++ b/modules/drawers/Panels.qml @@ -1,6 +1,7 @@ import "root:/config" import "root:/modules/osd" as Osd import "root:/modules/notifications" as Notifications +import "root:/modules/session" as Session import Quickshell import QtQuick @@ -12,6 +13,7 @@ Item { readonly property Osd.Wrapper osd: osd readonly property Notifications.Wrapper notifications: notifications + readonly property Session.Wrapper session: session anchors.fill: parent anchors.margins: BorderConfig.thickness @@ -20,19 +22,28 @@ Item { id: osd screen: root.screen - visibility: visibilities.osd + visibility: root.visibilities.osd anchors.verticalCenter: parent.verticalCenter anchors.right: parent.right + anchors.rightMargin: session.width } Notifications.Wrapper { id: notifications - screen: root.screen - visibility: visibilities.notifications + visibility: root.visibilities.notifications anchors.top: parent.top anchors.right: parent.right } + + Session.Wrapper { + id: session + + visibilities: root.visibilities + + anchors.verticalCenter: parent.verticalCenter + anchors.right: parent.right + } } |