diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-07-01 11:40:27 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-01 11:40:27 +0300 |
commit | ebc6922eaae28173532235222f9790c8ab3fdaa7 (patch) | |
tree | 7f3e50f0dddb3fb74d3969d46b90e3dd8e207f54 /alacritty.yml | |
parent | 28e3fc7c64a7f375ad843145a0a8f78e31bff05e (diff) | |
download | alacritty-ebc6922eaae28173532235222f9790c8ab3fdaa7.tar.gz alacritty-ebc6922eaae28173532235222f9790c8ab3fdaa7.zip |
Add `cursor.blink_timeout` config option
This option should prevent extensive power usage due to cursor blinking
when there's no user activity being performed.
Fixes #5992.
Diffstat (limited to 'alacritty.yml')
-rw-r--r-- | alacritty.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/alacritty.yml b/alacritty.yml index 3ba6a7f5..511a10d6 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -412,6 +412,11 @@ # Cursor blinking interval in milliseconds. #blink_interval: 750 + # Time after which cursor stops blinking, in seconds. + # + # Specifying '0' will disable timeout for blinking. + #blink_timeout: 5 + # If this is `true`, the cursor will be rendered as a hollow box when the # window is not focused. #unfocused_hollow: true |