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/Backgrounds.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/Backgrounds.qml')
| -rw-r--r-- | modules/drawers/Backgrounds.qml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/modules/drawers/Backgrounds.qml b/modules/drawers/Backgrounds.qml index 94d8dee..017b883 100644 --- a/modules/drawers/Backgrounds.qml +++ b/modules/drawers/Backgrounds.qml @@ -2,6 +2,7 @@ import "root:/services" 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 import QtQuick.Shapes @@ -19,8 +20,8 @@ Shape { Osd.Background { wrapper: panels.osd - startX: root.width - startY: (root.height - panels.osd.height) / 2 + startX: root.width - panels.session.width + startY: (root.height - wrapper.height) / 2 } Notifications.Background { @@ -29,4 +30,11 @@ Shape { startX: root.width startY: 0 } + + Session.Background { + wrapper: panels.session + + startX: root.width + startY: (root.height - wrapper.height) / 2 + } } |