From 11f80065906b951ed82a43247f5bb132de2525a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Atoch?= Date: Tue, 29 Jul 2025 10:41:04 -0400 Subject: [PATCH] Same coloring for the lockscreen --- Widgets/LockScreen.qml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Widgets/LockScreen.qml b/Widgets/LockScreen.qml index 49b3247..29f20fc 100644 --- a/Widgets/LockScreen.qml +++ b/Widgets/LockScreen.qml @@ -141,9 +141,16 @@ WlSessionLock { FastBlur { anchors.fill: parent source: lockBgImage - radius: 48 // Adjust blur strength as needed + radius: 22 // Adjust blur strength as needed transparentBorder: true } + Rectangle { + anchors.fill: parent + color: Qt.rgba( + Theme.backgroundPrimary.r, + Theme.backgroundPrimary.g, + Theme.backgroundPrimary.b, 0.6) + } // Main content container (moved up, Rectangle removed) ColumnLayout { anchors.centerIn: parent