summaryrefslogtreecommitdiff
path: root/modules/launcher/services/Apps.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-22 13:56:21 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-22 13:56:21 +1000
commita08b5daf962c265e642306e33e3044650cc860ce (patch)
tree5c0dad24f2ce20a7c262cf8486053cd685d655d3 /modules/launcher/services/Apps.qml
parentdrawers: fix input mask on special ws (diff)
downloadcaelestia-shell-a08b5daf962c265e642306e33e3044650cc860ce.tar.gz
caelestia-shell-a08b5daf962c265e642306e33e3044650cc860ce.tar.bz2
caelestia-shell-a08b5daf962c265e642306e33e3044650cc860ce.zip
plugin/appdb: forward signals
Diffstat (limited to 'modules/launcher/services/Apps.qml')
-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 02d997a..c409a7b 100644
--- a/modules/launcher/services/Apps.qml
+++ b/modules/launcher/services/Apps.qml
@@ -33,13 +33,13 @@ Searcher {
keys = ["categories", "name"];
weights = [0.9, 0.1];
} else if (search.startsWith(`${prefix}d `)) {
- keys = ["desc", "name"];
+ keys = ["comment", "name"];
weights = [0.9, 0.1];
} else if (search.startsWith(`${prefix}e `)) {
keys = ["execString", "name"];
weights = [0.9, 0.1];
} else if (search.startsWith(`${prefix}w `)) {
- keys = ["wmClass", "name"];
+ keys = ["startupClass", "name"];
weights = [0.9, 0.1];
} else if (search.startsWith(`${prefix}g `)) {
keys = ["genericName", "name"];