1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-11 13:51:01 -05:00

Change default bell.animation to Linear

The default animation feels really choppy, but it's just how its
function looks.
This commit is contained in:
Kirill Chibisov 2023-11-13 02:19:03 +04:00 committed by GitHub
parent 2f097dac5c
commit dc46d41ff9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View file

@ -47,6 +47,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- In mouse mode with `Shift` pressed, mouse bindings without `Shift` are only triggered - In mouse mode with `Shift` pressed, mouse bindings without `Shift` are only triggered
if no exact binding (i.e. one with `Shift`) is found. if no exact binding (i.e. one with `Shift`) is found.
- Use built-in font for powerline symbols from `U+E0B0` to `U+E0B3` - Use built-in font for powerline symbols from `U+E0B0` to `U+E0B3`
- Default `bell.animation` is now `Linear`
### Fixed ### Fixed

View file

@ -56,10 +56,10 @@ pub enum BellAnimation {
// Penner animation. // Penner animation.
EaseOutQuint, EaseOutQuint,
// Penner animation. // Penner animation.
#[default]
EaseOutExpo, EaseOutExpo,
// Penner animation. // Penner animation.
EaseOutCirc, EaseOutCirc,
// Penner animation. // Penner animation.
#[default]
Linear, Linear,
} }

View file

@ -461,7 +461,7 @@ This section documents the *[bell]* table of the configuration file.
Visual bell animation effect for flashing the screen when the visual bell is rung. Visual bell animation effect for flashing the screen when the visual bell is rung.
Default: _"EaseOutExpo"_ Default: _"Linear"_
*duration* <integer> *duration* <integer>