From 03f477257deb3a1cc4c47fe6d0054867493fb49d Mon Sep 17 00:00:00 2001 From: dec05eba Date: Fri, 26 Apr 2024 22:18:59 +0200 Subject: Change notify-send timeout to 3 seconds --- tools/list-missing-unwatched.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/list-missing-unwatched.py') diff --git a/tools/list-missing-unwatched.py b/tools/list-missing-unwatched.py index 980c500..e529acb 100755 --- a/tools/list-missing-unwatched.py +++ b/tools/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", "-a", "automedia", "-t", "10000", "-u", urgency, "--", title, description]) + process = subprocess.Popen(["notify-send", "-a", "automedia", "-t", "3000", "-u", urgency, "--", title, description]) stdout, stderr = process.communicate() return process.returncode == 0 -- cgit v1.2.3