From 3bf6f7ca095a5b1031b691f623ac38a4f40e907f Mon Sep 17 00:00:00 2001 From: darksignal7 Date: Thu, 9 Oct 2025 17:45:04 +0300 Subject: [PATCH] fix: hide cookie quote on digital (am i blind or smthn?) --- .config/quickshell/ii/modules/background/Background.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/ii/modules/background/Background.qml b/.config/quickshell/ii/modules/background/Background.qml index bee91738f..9e39dd275 100644 --- a/.config/quickshell/ii/modules/background/Background.qml +++ b/.config/quickshell/ii/modules/background/Background.qml @@ -24,7 +24,7 @@ Variants { readonly property real clockSizePadding: 20 readonly property real screenSizePadding: 50 readonly property string clockStyle: Config.options.background.clock.style - readonly property bool showQuote: Config.options.background.showQuote && Config.options.background.quote !== "" && !GlobalStates.screenLocked + readonly property bool showCookieQuote: Config.options.background.showQuote && Config.options.background.quote !== "" && !GlobalStates.screenLocked && Config.options.background.clock.style === "cookie" model: Quickshell.screens PanelWindow { @@ -343,7 +343,7 @@ Variants { Loader { id: cookieQuoteLoader - visible: root.showQuote + visible: root.showCookieQuote active: visible sourceComponent: CookieQuote {} anchors.horizontalCenter: cookieClockLoader.horizontalCenter