aboutsummaryrefslogtreecommitdiff
path: root/tools/list-unwatched.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/list-unwatched.py')
-rwxr-xr-xtools/list-unwatched.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/list-unwatched.py b/tools/list-unwatched.py
index 874df7b..9c81c2c 100755
--- a/tools/list-unwatched.py
+++ b/tools/list-unwatched.py
@@ -5,7 +5,7 @@ import subprocess
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