From 8803c94ce07690e2b2a6a725c29c40f11ec5759a 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 cf11ba1e..5b3f103c 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(); + } } } }