summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-19 23:38:21 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-19 23:38:21 +1000
commit98eb7c16798c2e481d4b8d90a97e54433466fb2a (patch)
tree86245aba2d2ea53a8ecadff7b4de602bb69e840e /services
parentinternal: remove unnecessary (diff)
downloadcaelestia-shell-98eb7c16798c2e481d4b8d90a97e54433466fb2a.tar.gz
caelestia-shell-98eb7c16798c2e481d4b8d90a97e54433466fb2a.tar.bz2
caelestia-shell-98eb7c16798c2e481d4b8d90a97e54433466fb2a.zip
launcher: fix again
Diffstat (limited to 'services')
-rw-r--r--services/Apps.qml2
1 files changed, 1 insertions, 1 deletions
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}`]);
}