diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-11-13 02:19:03 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-13 02:19:03 +0400 |
commit | dc46d41ff945d7158d9bb1638afc124cf650fa61 (patch) | |
tree | d325ab2f25e78e705dc2511d3e1f1b1d47d59bf5 /alacritty/src | |
parent | 2f097dac5c78a01bdb020c982a09867b3213a69b (diff) | |
download | r-alacritty-dc46d41ff945d7158d9bb1638afc124cf650fa61.tar.gz r-alacritty-dc46d41ff945d7158d9bb1638afc124cf650fa61.tar.bz2 r-alacritty-dc46d41ff945d7158d9bb1638afc124cf650fa61.zip |
Change default `bell.animation` to `Linear`
The default animation feels really choppy, but it's just how its
function looks.
Diffstat (limited to 'alacritty/src')
-rw-r--r-- | alacritty/src/config/bell.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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, } |