From 98eb7c16798c2e481d4b8d90a97e54433466fb2a Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 19 Jun 2025 23:38:21 +1000 Subject: launcher: fix again --- services/Apps.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'services') diff --git a/services/Apps.qml b/services/Apps.qml index 51232f3..546a6eb 100644 --- a/services/Apps.qml +++ b/services/Apps.qml @@ -23,7 +23,7 @@ Singleton { function launch(entry: DesktopEntry): void { if (entry.execString.startsWith("sh -c")) - Quickshell.execDetached(["app2unit", "--", entry.execString]); + Quickshell.execDetached(["sh", "-c", `app2unit -- ${entry.execString}`]); else Quickshell.execDetached(["sh", "-c", `app2unit -- '${entry.id}.desktop' || app2unit -- ${entry.execString}`]); } -- cgit v1.2.3-freya