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 /config/LauncherConfig.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 'config/LauncherConfig.qml')
| -rw-r--r-- | config/LauncherConfig.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml index 081d068..2cd42a1 100644 --- a/config/LauncherConfig.qml +++ b/config/LauncherConfig.qml @@ -7,6 +7,14 @@ JsonObject { property bool enableDangerousActions: false // Allow actions that can cause losing data, like shutdown, reboot and logout property int dragThreshold: 50 + property JsonObject useFuzzy: JsonObject { + property bool apps: false + property bool actions: false + property bool schemes: false + property bool variants: false + property bool wallpapers: false + } + property JsonObject sizes: JsonObject { property int itemWidth: 600 property int itemHeight: 57 |