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 --- list-missing-unwatched.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'list-missing-unwatched.py') diff --git a/list-missing-unwatched.py b/list-missing-unwatched.py index 4dab88c..980c500 100755 --- a/list-missing-unwatched.py +++ b/list-missing-unwatched.py @@ -6,7 +6,7 @@ import sys def show_notification(title, description, urgency): print("Notification: title: %s, description: %s" % (title, description)) - process = subprocess.Popen(["notify-send", "-t", "10000", "-u", urgency, "--", title, description]) + process = subprocess.Popen(["notify-send", "-a", "automedia", "-t", "10000", "-u", urgency, "--", title, description]) stdout, stderr = process.communicate() return process.returncode == 0 -- cgit v1.2.3