From cbe04512ee2774e5f406b276f04aabb2d561a655 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 15 Jun 2025 08:59:39 +0200 Subject: [PATCH] search: remove arch-specific command-not-found funcitonality (#1409) --- .config/quickshell/modules/overview/SearchWidget.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/modules/overview/SearchWidget.qml b/.config/quickshell/modules/overview/SearchWidget.qml index 9e6866240..614efa91e 100644 --- a/.config/quickshell/modules/overview/SearchWidget.qml +++ b/.config/quickshell/modules/overview/SearchWidget.qml @@ -107,7 +107,7 @@ Item { // Wrapper property list baseCommand: ["bash", "-c"] function executeCommand(command) { executor.command = baseCommand.concat( - `${command} || ${ConfigOptions.apps.terminal} fish -C 'echo "${qsTr("Searching for package with that command")}..." && pacman -F ${command}'` + `${command}` ) executor.startDetached() }