diff --git a/config/walker/config.toml b/config/walker/config.toml index 240c95e0..62f55f78 100644 --- a/config/walker/config.toml +++ b/config/walker/config.toml @@ -1,6 +1,7 @@ -force_keyboard_focus = true # forces keyboard forcus to stay in Walker -selection_wrap = true # wrap list if at bottom or top -theme = "omarchy-default" # theme to use +max_results = 256 # 256 should be enough for everyone +force_keyboard_focus = true # forces keyboard forcus to stay in Walker +selection_wrap = true # wrap list if at bottom or top +theme = "omarchy-default" # theme to use additional_theme_location = "~/.local/share/omarchy/default/walker/themes/" [placeholders] diff --git a/migrations/1762352101.sh b/migrations/1762352101.sh new file mode 100644 index 00000000..810aa293 --- /dev/null +++ b/migrations/1762352101.sh @@ -0,0 +1,5 @@ +echo "Increase Walker limit on how many entries can be shown to 256" + +if ! grep -q "max_results" ~/.config/walker/config.toml; then + sed -i "1i max_results = 256 # 256 should be enough for everyone" ~/.config/walker/config.toml +fi