From 41aebc819982b48655bea0b299fa95ae9006e6d9 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 9 Jun 2024 17:35:59 +0200 Subject: Set notify urgency to low --- src/html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/html.c') diff --git a/src/html.c b/src/html.c index c0860b5..a83d33f 100644 --- a/src/html.c +++ b/src/html.c @@ -426,7 +426,7 @@ static int download_html_items_in_reverse(const char *plugin_filepath, Buffer *d if(result != 0) fprintf(stderr, "Failed while downloading html, url: %s\n", download_items_it->link); - const char *notify_args[] = { "notify-send", "-a", "automedia", "-u", result == 0 ? "normal" : "critical", "-t", "3000", "--", result == 0 ? "Download finished" : "Download failed", notify_msg, NULL }; + const char *notify_args[] = { "notify-send", "-a", "automedia", "-u", result == 0 ? "low" : "critical", "-t", "3000", "--", result == 0 ? "Download finished" : "Download failed", notify_msg, NULL }; program_exec(notify_args, NULL, NULL); if(result != 0) -- cgit v1.2.3