aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c
index 7e51b05..f72e9a2 100644
--- a/src/config.c
+++ b/src/config.c
@@ -29,6 +29,7 @@ static void runes_config_set_defaults(RunesTerm *t)
t->bold_is_bright = 1;
t->bold_is_bold = 1;
t->audible_bell = 1;
+ t->bell_is_urgent = 1;
t->mousecursorcolor = cairo_pattern_create_rgb(1.0, 1.0, 1.0);
@@ -420,6 +421,9 @@ static void runes_config_set(RunesTerm *t, char *key, char *val)
else if (!strcmp(key, "audible_bell")) {
t->audible_bell = runes_config_parse_bool(val);
}
+ else if (!strcmp(key, "bell_is_urgent")) {
+ t->bell_is_urgent = runes_config_parse_bool(val);
+ }
else if (!strcmp(key, "bgcolor")) {
cairo_pattern_t *newcolor;
newcolor = runes_config_parse_color(val);