@@ 18,4 18,7 @@ fi# Stop alacritty from bouncing on macOS
# see: https://github.com/alacritty/alacritty/issues/2950#issuecomment-706610878
-printf "\e[?1042l"
+if [ -z "$SSH_CLIENT" ] ; then
+ # This has to be disabled during SSH because otherwise it breaks rsync.
+ printf "\e[?1042l"
+fi