From b4d89b66f52048633cb74255c7e1938dcc1d86a2 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 14 Oct 2025 09:21:18 +0200 Subject: [PATCH] Fix command key formatting in SearchWidget.qml --- .config/quickshell/ii/modules/overview/SearchWidget.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/overview/SearchWidget.qml b/.config/quickshell/ii/modules/overview/SearchWidget.qml index 28285a8aa..dc4a61d2c 100644 --- a/.config/quickshell/ii/modules/overview/SearchWidget.qml +++ b/.config/quickshell/ii/modules/overview/SearchWidget.qml @@ -403,7 +403,7 @@ Item { // Wrapper return entry; }) const commandResultObject = { - key: `cmd /${root.searchingText}`, + key: `cmd ${root.searchingText}`, name: StringUtils.cleanPrefix(root.searchingText, Config.options.search.prefix.shellCommand).replace("file://", ""), clickActionName: Translation.tr("Run"), type: Translation.tr("Run command"),