Files
omarchy/migrations/1757535736.sh
2025-10-18 13:30:19 +02:00

10 lines
225 B
Bash

echo "Enabling vim keys in btop"
CONFIG_FILE=~/.config/btop/btop.conf
if [[ -f $CONFIG_FILE ]]; then
if grep -q "^vim_keys = " "$CONFIG_FILE"; then
sed -i 's/^vim_keys = False/vim_keys = True/' "$CONFIG_FILE"
fi
fi