From 8f3a94b1048add03351f04d2bfc788f62b559ffe Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Fri, 17 Apr 2026 07:42:45 +0200 Subject: [PATCH] Disable mobile task switcher in convergence mode The full-screen card carousel is touch-oriented and redundant when a keyboard and mouse are available. In convergence mode, disable it so KWin falls back to the standard Alt-Tab tabbox. Window switching is also covered by the dock bar icons and the Overview effect. --- envmanager/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/envmanager/config.h b/envmanager/config.h index a67c635c..32188f76 100644 --- a/envmanager/config.h +++ b/envmanager/config.h @@ -57,7 +57,7 @@ QMap> getKwinrcSettings(KSharedConfig::Ptr m_mo { {"blurEnabled", false}, // disable blur for performance reasons, we could reconsider in the future for more powerful devices {"convergentwindowsEnabled", true}, // enable our convergent window plugin - {"mobiletaskswitcherEnabled", true}, // ensure the mobile task switcher plugin is enabled + {"mobiletaskswitcherEnabled", !convergenceModeEnabled}, // mobile task switcher on phone only; convergence uses standard Alt-Tab tabbox {"overviewEnabled", convergenceModeEnabled}, // enable KWin Overview effect in convergence mode for desktop-style task switching {"screenedgeEnabled", convergenceModeEnabled} // enable screen edge visual feedback in convergence mode (mouse hot corners) }},