summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-01-23 09:39:20 -0500
committerFreya Murphy <freya@freyacat.org>2026-03-16 09:45:28 -0400
commitef27e3a48908ad2d1b4d238f2bab8c20137ba13f (patch)
tree6aa757093e24e76c63cf9682918596b2c298520e /modules
parentfix rebase (diff)
downloadcaelestia-shell-ef27e3a48908ad2d1b4d238f2bab8c20137ba13f.tar.gz
caelestia-shell-ef27e3a48908ad2d1b4d238f2bab8c20137ba13f.tar.bz2
caelestia-shell-ef27e3a48908ad2d1b4d238f2bab8c20137ba13f.zip
add exec string to default search
Diffstat (limited to 'modules')
-rw-r--r--modules/launcher/services/Apps.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/launcher/services/Apps.qml b/modules/launcher/services/Apps.qml
index bcd7345..ce1e47a 100644
--- a/modules/launcher/services/Apps.qml
+++ b/modules/launcher/services/Apps.qml
@@ -48,8 +48,8 @@ Searcher {
keys = ["keywords", "name"];
weights = [0.9, 0.1];
} else {
- keys = ["name"];
- weights = [1];
+ keys = ["name", "execString"];
+ weights = [1, 0.1];
if (!search.startsWith(`${prefix}t `))
return query(search).map(e => e.entry);