From 3fd429c9f30e1b8cffdeca2778c7eb20f8a0647f Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 13 May 2025 19:01:00 +1000 Subject: session: move to drawers --- modules/drawers/Backgrounds.qml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'modules/drawers/Backgrounds.qml') 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 + } } -- cgit v1.2.3-freya