add: config for fsel

This commit is contained in:
kenji
2025-12-26 11:34:17 -06:00
parent e3bac0adc6
commit c124898b8c
2 changed files with 23 additions and 1 deletions
+17
View File
@@ -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
+6 -1
View File
@@ -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"
'';
}