From c9b33846cb15555ee419c5e218ce16f05c589d26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Sun, 28 Jun 2015 19:41:31 +0200 Subject: [PATCH] degesch: add an option to beep on highlight --- degesch.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/degesch.c b/degesch.c index 69fb927..9cbd3be 100644 --- a/degesch.c +++ b/degesch.c @@ -1443,6 +1443,10 @@ static struct config_schema g_config_behaviour[] = .comment = "Don't leak messages from the server and global buffers", .type = CONFIG_ITEM_BOOLEAN, .default_ = "off" }, + { .name = "beep_on_highlight", + .comment = "Beep when highlighted or on a new invisible PM", + .type = CONFIG_ITEM_BOOLEAN, + .default_ = "on" }, {} }; @@ -2479,8 +2483,10 @@ log_formatter (struct app_context *ctx, LIST_APPEND_WITH_TAIL (buffer->lines, buffer->lines_tail, line); buffer->lines_count++; - // TODO: beep if so configured and either the line is a highlight, - // or the buffer is an inactive PM buffer + if (get_config_boolean (ctx->config.root, "behaviour.beep_on_highlight")) + if ((flags & BUFFER_LINE_HIGHLIGHT) + || (buffer->type == BUFFER_PM && buffer != ctx->current_buffer)) + input_ding (&ctx->input); if (buffer == ctx->current_buffer) {