From 65516e872f07561edc5d7fab86b334611b3c51fa Mon Sep 17 00:00:00 2001 From: purian23 Date: Sat, 21 Feb 2026 00:31:26 -0500 Subject: [PATCH] theme: Fix Light/Dark mode portal sync --- quickshell/Common/Theme.qml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/quickshell/Common/Theme.qml b/quickshell/Common/Theme.qml index cc4d0943..654e952b 100644 --- a/quickshell/Common/Theme.qml +++ b/quickshell/Common/Theme.qml @@ -961,10 +961,7 @@ Singleton { } if (!isGreeterMode) { - // Skip with matugen because, our script runner will do it. - if (!matugenAvailable) { - PortalService.setLightMode(light); - } + PortalService.setLightMode(light); if (typeof SettingsData !== "undefined") { SettingsData.updateCosmicThemeMode(light); }