Files
dotfiles/.config/walker/config.toml

50 lines
1.1 KiB
TOML
Raw Normal View History

2026-03-07 13:01:48 +00:00
force_keyboard_focus = true # forces keyboard focuses to stay in Walker
selection_wrap = true # wrap list if at bottom or top
theme = "station-default" # theme to use
additional_theme_location = "~/.config/walker/themes/"
2026-03-07 10:33:11 +00:00
hide_action_hints = true # globally hide the action hints
[placeholders]
"default" = { input = " Search...", list = "No Results" } # placeholders for input and empty list, key is the providers name, so f.e. "desktopapplications" or "menus:other"
[keybinds]
quick_activate = []
[columns]
symbols = 1 # providers to be queried by default
[providers]
max_results = 256 # 256 should be enough for everyone
default = [
"desktopapplications",
"websearch",
]
[[providers.prefixes]]
prefix = "/"
provider = "providerlist"
[[providers.prefixes]]
prefix = "."
provider = "files"
[[providers.prefixes]]
prefix = ":"
provider = "symbols"
[[providers.prefixes]]
prefix = "="
provider = "calc"
[[providers.prefixes]]
prefix = "@"
provider = "websearch"
[[providers.prefixes]]
prefix = "$"
provider = "clipboard"
[[emergencies]]
text = "Restart Walker"
command = "omarchy-restart-walker"