From dc46d41ff945d7158d9bb1638afc124cf650fa61 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Mon, 13 Nov 2023 02:19:03 +0400 Subject: Change default `bell.animation` to `Linear` The default animation feels really choppy, but it's just how its function looks. --- alacritty/src/config/bell.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty/src') diff --git a/alacritty/src/config/bell.rs b/alacritty/src/config/bell.rs index 1510f4b5..0d6874cb 100644 --- a/alacritty/src/config/bell.rs +++ b/alacritty/src/config/bell.rs @@ -56,10 +56,10 @@ pub enum BellAnimation { // Penner animation. EaseOutQuint, // Penner animation. - #[default] EaseOutExpo, // Penner animation. EaseOutCirc, // Penner animation. + #[default] Linear, } -- cgit