aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorMidov <midov@midov.pl>2022-04-05 21:59:36 +0200
committerdec05eba <dec05eba@protonmail.com>2022-04-05 22:57:43 +0200
commitc83325a3699748e08395180529deff658ca27a58 (patch)
tree599c0b3896a52220a0f7f3d2cfc338ce5248985b /src/main.c
parentbc9bc9192752cf4329830199107c64ea9c65d542 (diff)
add appname parameter for notify-send
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
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 {