diff options
Diffstat (limited to 'modules/launcher')
| -rw-r--r-- | modules/launcher/items/CalcItem.qml | 2 | ||||
| -rw-r--r-- | modules/launcher/services/Apps.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/launcher/items/CalcItem.qml b/modules/launcher/items/CalcItem.qml index 2e3c901..84c66a7 100644 --- a/modules/launcher/items/CalcItem.qml +++ b/modules/launcher/items/CalcItem.qml @@ -111,7 +111,7 @@ Item { color: Colours.palette.m3onTertiary function onClicked(): void { - Quickshell.execDetached(["app2unit", "--", "foot", "fish", "-C", `exec qalc -i '${root.math}'`]); + Quickshell.execDetached(["app2unit", "--", ...Config.general.apps.terminal, "fish", "-C", `exec qalc -i '${root.math}'`]); root.list.visibilities.launcher = false; } } diff --git a/modules/launcher/services/Apps.qml b/modules/launcher/services/Apps.qml index bfa2f87..b6999fd 100644 --- a/modules/launcher/services/Apps.qml +++ b/modules/launcher/services/Apps.qml @@ -13,7 +13,7 @@ Searcher { function launch(entry: DesktopEntry): void { if (entry.runInTerminal) Quickshell.execDetached({ - command: ["app2unit", "--", "foot", `${Quickshell.shellDir}/assets/wrap_term_launch.sh`, ...entry.command], + command: ["app2unit", "--", ...Config.general.apps.terminal, `${Quickshell.shellDir}/assets/wrap_term_launch.sh`, ...entry.command], workingDirectory: entry.workingDirectory }); else |