Slowdown the ghostty scrolling a tad

This commit is contained in:
David Heinemeier Hansson
2025-11-10 11:33:35 +01:00
parent e354df3143
commit 6e1f1cae1b
2 changed files with 6 additions and 1 deletions

View File

@@ -27,4 +27,4 @@ keybind = shift+insert=paste_from_clipboard
keybind = control+insert=copy_to_clipboard keybind = control+insert=copy_to_clipboard
# Slowdown mouse scrolling # Slowdown mouse scrolling
mouse-scroll-multiplier = 0.5 mouse-scroll-multiplier = 0.8

5
migrations/1762770442.sh Normal file
View File

@@ -0,0 +1,5 @@
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.8" >> ~/.config/ghostty/config
fi