From 2ff78d4a02c6bc13b155a06a878bc9980b6b8fbe Mon Sep 17 00:00:00 2001 From: bbedward Date: Tue, 24 Feb 2026 10:38:12 -0500 Subject: [PATCH] dpms: disable fade overlay in onRequestMonitorOn --- quickshell/DMSShell.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/quickshell/DMSShell.qml b/quickshell/DMSShell.qml index 059e43ab..f1614b44 100644 --- a/quickshell/DMSShell.qml +++ b/quickshell/DMSShell.qml @@ -142,6 +142,12 @@ Item { fadeDpmsWindowLoader.item.cancelFade(); } } + + function onRequestMonitorOn() { + if (!fadeDpmsWindowLoader.item) + return; + fadeDpmsWindowLoader.item.cancelFade(); + } } } }