From 0b45b5ed69d44373e680e77ef2c9948602952d05 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Fri, 29 Dec 2023 15:44:26 -0500 Subject: [PATCH] envmanager: Explicitly enable kdecoration plugin Upgrading on pmOS from Plasma 5, where we used to ship custom configs seems to have kwin get stuck having the kdecoration plugin disabled. Manually enable it. --- envmanager/config.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/envmanager/config.h b/envmanager/config.h index 4eabc041..4287146a 100644 --- a/envmanager/config.h +++ b/envmanager/config.h @@ -37,7 +37,8 @@ QMap> getKwinrcSettings(KSharedConfig::Ptr m_mo {"Plugins", {{"blurEnabled", false}, {"convergentwindowsEnabled", true}}}, {"Wayland", {{"InputMethod", "/usr/share/applications/com.github.maliit.keyboard.desktop"}, {"VirtualKeyboardEnabled", true}}}, {"org.kde.kdecoration2", - {{"ButtonsOnRight", convergenceModeEnabled ? "HIAX" : "H"}}}, // ButtonsOnRight changes depending on whether the device is in convergence mode + {{"ButtonsOnRight", convergenceModeEnabled ? "HIAX" : "H"}, // ButtonsOnRight changes depending on whether the device is in convergence mode + {"NoPlugin", false}}}, {"Input", {{"TabletMode", convergenceModeEnabled ? "off" : "auto"}}} // TabletMode changes depending on whether the device is in convergence mode }; }