diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-19 23:38:21 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-19 23:38:21 +1000 |
| commit | 98eb7c16798c2e481d4b8d90a97e54433466fb2a (patch) | |
| tree | 86245aba2d2ea53a8ecadff7b4de602bb69e840e /services | |
| parent | internal: remove unnecessary (diff) | |
| download | caelestia-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.qml | 2 |
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}`]); } |