mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
6 lines
235 B
Bash
6 lines
235 B
Bash
echo "Slow down Ghostty mouse scrolling to match Alacritty"
|
|
|
|
if ! grep -q "mouse-scroll-multiplier" ~/.config/ghostty/config; then
|
|
echo -e "\n# Slowdown mouse scrolling\nmouse-scroll-multiplier = 0.95" >> ~/.config/ghostty/config
|
|
fi
|