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:
parent
2f097dac5c
commit
dc46d41ff9
3 changed files with 3 additions and 2 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
|
@ -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>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue