diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-07-16 20:27:53 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-07-16 20:27:53 +0200 |
commit | cfc9ef1cade470f6d2a7ba67c625eb8c11ff2743 (patch) | |
tree | cab15e6b04b8773d98ed5165ab3efca3775e5f4f /tools/list-missing-unwatched.py | |
parent | b3ef5d250c3cc4e35e82812bfd29fb19eb9bba83 (diff) |
Add fallback urls for rss (right now, fallback nyaa.si to nyaa.land)
Diffstat (limited to 'tools/list-missing-unwatched.py')
-rwxr-xr-x | tools/list-missing-unwatched.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/list-missing-unwatched.py b/tools/list-missing-unwatched.py index e529acb..431054a 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", "3000", "-u", urgency, "--", title, description]) + process = subprocess.Popen(["notify-send", "-a", "automedia", "-t", "5000", "-u", urgency, "--", title, description]) stdout, stderr = process.communicate() return process.returncode == 0 |