diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-19 14:49:47 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-19 14:49:47 +1000 |
| commit | 0097c56e09b8501cabdfac2e15d536f121446cc4 (patch) | |
| tree | 8388d0b2bca7212c3ab4ba1f617b36bb6a05721f /services/Apps.qml | |
| parent | feat: fzf-like search instead of fuzzy (diff) | |
| download | caelestia-shell-0097c56e09b8501cabdfac2e15d536f121446cc4.tar.gz caelestia-shell-0097c56e09b8501cabdfac2e15d536f121446cc4.tar.bz2 caelestia-shell-0097c56e09b8501cabdfac2e15d536f121446cc4.zip | |
config: add config for using fzf/fuzzy search
Diffstat (limited to 'services/Apps.qml')
| -rw-r--r-- | services/Apps.qml | 2 |
1 files changed, 2 insertions, 0 deletions
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) |