From e76b2c5497cad614cc5cc482d3dcdf5ab0d77300 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Sat, 6 Sep 2025 12:18:14 +0200 Subject: [PATCH] Launcher: fix app2unit execution, implemented #202 --- Modules/Launcher/Plugins/ApplicationsPlugin.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Launcher/Plugins/ApplicationsPlugin.qml b/Modules/Launcher/Plugins/ApplicationsPlugin.qml index 8b88523..05f086f 100644 --- a/Modules/Launcher/Plugins/ApplicationsPlugin.qml +++ b/Modules/Launcher/Plugins/ApplicationsPlugin.qml @@ -85,7 +85,7 @@ Item { if (Settings.data.appLauncher.useApp2Unit && app.id) { Logger.log("ApplicationsPlugin", `Using app2unit for: ${app.id}`) - Quickshell.execDetached(["app2unit", "--", app.id]) + Quickshell.execDetached(["app2unit", "--", app.id + ".desktop"]) } else if (app.execute) { app.execute() } else if (app.exec) {