Files
omarchy/migrations/1762352101.sh
David Heinemeier Hansson cb03d7d84b Raise walker max_entries to 256
The default is only 50

Closes #3175
2025-11-05 17:29:10 +01:00

6 lines
242 B
Bash

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