degesch: add an option to beep on highlight

This commit is contained in:
Přemysl Eric Janouch 2015-06-28 19:41:31 +02:00
parent 3b42a09751
commit c9b33846cb
1 changed files with 8 additions and 2 deletions

View File

@ -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)
{