From c83325a3699748e08395180529deff658ca27a58 Mon Sep 17 00:00:00 2001 From: Midov Date: Tue, 5 Apr 2022 21:59:36 +0200 Subject: add appname parameter for notify-send --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index e5edd19..c6e46a0 100644 --- a/src/main.c +++ b/src/main.c @@ -495,7 +495,7 @@ static void torrent_list_check_new_downloads_callback(int id, const char *name, if(is_finished) { if(id < unfinished_torrents->size && unfinished_torrents->items[id] == 1) { unfinished_torrents->items[id] = 0; - const char *notify_args[] = { "notify-send", "-u", "normal", "-t", "10000", "--", "Download finished", name, NULL }; + const char *notify_args[] = { "notify-send", "-u", "normal", "-a", "automedia", "-t", "10000", "--", "Download finished", name, NULL }; program_exec(notify_args, NULL, NULL); } } else { -- cgit v1.2.3