From c124898b8ca6a02834eda4722701f505f46615a8 Mon Sep 17 00:00:00 2001 From: kenji Date: Fri, 26 Dec 2025 11:34:17 -0600 Subject: [PATCH] add: config for fsel --- apps/fsel/config.toml | 17 +++++++++++++++++ apps/fsel/home.nix | 7 ++++++- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 apps/fsel/config.toml diff --git a/apps/fsel/config.toml b/apps/fsel/config.toml new file mode 100644 index 0000000..d6fb1ac --- /dev/null +++ b/apps/fsel/config.toml @@ -0,0 +1,17 @@ +# Colors +# highlight_color = "LightBlue" +# cursor = "█" + +# App launcher +terminal_launcher = "ghostty -e" + +[app_launcher] +filter_desktop = true # Filter apps by desktop environment +list_executables_in_path = false # Show CLI tools from $PATH +hide_before_typing = false # Hide list until you start typing +match_mode = "fuzzy" # "fuzzy" or "exact" +confirm_first_launch = false # Confirm before launching new apps with -p + +# Pin/favorite settings +# pin_color = "rgb(255,165,0)" # Color for pin icon (orange) +# pin_icon = "📌" # Icon for pinned apps diff --git a/apps/fsel/home.nix b/apps/fsel/home.nix index 700c1ac..3d5261f 100644 --- a/apps/fsel/home.nix +++ b/apps/fsel/home.nix @@ -4,6 +4,11 @@ ... }: { home.packages = [ - inputs.fsel.packages.${pkgs.system}.default + inputs.fsel.packages.${pkgs.system}.default # FIXME: does not have its own homeManagerModules + pkgs.cclip ]; + home.file.".config/fsel/config.toml".text = '' + [exec] + terminal_launcher = "${pkgs.ghostty}/bin/ghostty -e" + ''; }