From 897b00c24250c494bc7074918e4351c445d879ca Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Sat, 20 Jul 2024 14:47:12 -0400 Subject: [PATCH] taskswitcher: Fix it not being registered as a KWin effect I'm not really sure how the metadata was installed previously, but it appears the behaviour for that has changed and we now need to install the metadata file ourselves. --- kwin/mobiletaskswitcher/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kwin/mobiletaskswitcher/CMakeLists.txt b/kwin/mobiletaskswitcher/CMakeLists.txt index a7c3a532..18d215da 100644 --- a/kwin/mobiletaskswitcher/CMakeLists.txt +++ b/kwin/mobiletaskswitcher/CMakeLists.txt @@ -24,5 +24,5 @@ target_link_libraries(mobiletaskswitcher Plasma::Activities ) -# install(TARGETS kwin4_effect_taskswitcher DESTINATION ${PLUGIN_INSTALL_DIR}/kwin/effects/plugins) install(DIRECTORY qml DESTINATION ${KDE_INSTALL_DATADIR}/kwin/effects/mobiletaskswitcher) +install(FILES mobiletaskswitcher.json DESTINATION ${KDE_INSTALL_DATADIR}/kwin/effects/mobiletaskswitcher)