From a4103859cdb0e002884b2de79fc925b7929df891 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 15 Sep 2025 08:32:04 +0200 Subject: [PATCH] lock: hide color overlay when unlocking in light mode --- .config/quickshell/ii/modules/background/Background.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/background/Background.qml b/.config/quickshell/ii/modules/background/Background.qml index f39995978..8b054fc91 100644 --- a/.config/quickshell/ii/modules/background/Background.qml +++ b/.config/quickshell/ii/modules/background/Background.qml @@ -168,7 +168,7 @@ Variants { // Wallpaper Image { id: wallpaper - visible: opacity > 0 + visible: opacity > 0 && !blurLoader.active opacity: (status === Image.Ready && !bgRoot.wallpaperIsVideo) ? 1 : 0 Behavior on opacity { animation: Appearance.animation.elementMoveEnter.numberAnimation.createObject(this) @@ -244,6 +244,7 @@ Variants { samples: radius * 2 + 1 Rectangle { + opacity: GlobalStates.screenLocked ? 1 : 0 anchors.fill: parent color: CF.ColorUtils.transparentize(Appearance.colors.colLayer0, 0.7) }