config: add ‘notify’ to possible values for ‘bell’ in foot.ini

When `bell=notify`, foot will trigger a desktop notification when it
receives a BEL in an unfocused window.
This commit is contained in:
Daniel Eklöf 2020-12-10 18:22:48 +01:00
parent 1d8410b7ae
commit 15d20af2a2
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
7 changed files with 45 additions and 17 deletions

View file

@ -271,7 +271,7 @@ struct terminal {
} meta;
bool num_lock_modifier;
bool bell_is_urgent;
bool bell_action_enabled;
/* Saved DECSET modes - we save the SET state */
struct {
@ -295,7 +295,7 @@ struct terminal {
uint32_t meta_eight_bit:1;
uint32_t meta_esc_prefix:1;
uint32_t num_lock_modifier:1;
uint32_t bell_is_urgent:1;
uint32_t bell_action_enabled:1;
uint32_t alt_screen:1;
uint32_t modify_escape_key:1;
uint32_t ime:1;