From 9e6c1d7c08d67725dacee97ffe3561961402b9e6 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 6 Feb 2026 21:37:27 +0100 Subject: [PATCH] revert weird launcher entries with terminal apps --- dots/.config/quickshell/ii/services/LauncherSearch.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dots/.config/quickshell/ii/services/LauncherSearch.qml b/dots/.config/quickshell/ii/services/LauncherSearch.qml index 787da3090..12fc67de8 100644 --- a/dots/.config/quickshell/ii/services/LauncherSearch.qml +++ b/dots/.config/quickshell/ii/services/LauncherSearch.qml @@ -250,8 +250,7 @@ Singleton { if (!entry.runInTerminal) entry.execute(); else { - print([...Config.options.apps.terminal, "-e", ...entry.command]) - Quickshell.execDetached([...Config.options.apps.terminal, "-e", ...entry.command]); + Quickshell.execDetached(["bash", '-c', `${Config.options.apps.terminal} -e '${StringUtils.shellSingleQuoteEscape(entry.command.join(' '))}'`]); } }, comment: entry.comment, @@ -267,7 +266,7 @@ Singleton { if (!action.runInTerminal) action.execute(); else { - Quickshell.execDetached([...Config.options.apps.terminal, "-e", ...action.command]); + Quickshell.execDetached(["bash", '-c', `${Config.options.apps.terminal} -e '${StringUtils.shellSingleQuoteEscape(action.command.join(' '))}'`]); } } });