From 0097c56e09b8501cabdfac2e15d536f121446cc4 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 19 Jul 2025 14:49:47 +1000 Subject: config: add config for using fzf/fuzzy search --- services/Apps.qml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'services/Apps.qml') diff --git a/services/Apps.qml b/services/Apps.qml index b8ec38e..e2addcd 100644 --- a/services/Apps.qml +++ b/services/Apps.qml @@ -1,5 +1,6 @@ pragma Singleton +import qs.config import qs.utils import Quickshell @@ -7,6 +8,7 @@ Searcher { id: root list: DesktopEntries.applications.values.filter(a => !a.noDisplay).sort((a, b) => a.name.localeCompare(b.name)) + useFuzzy: Config.launcher.useFuzzy.apps function launch(entry: DesktopEntry): void { if (entry.runInTerminal) -- cgit v1.2.3-freya