From 81a1645bde6774dd149a360382ef52a1a3fe60ee Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Sat, 16 May 2020 11:08:47 +0200 Subject: [PATCH] Change notification duration --- notify.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/notify.py b/notify.py index 6a76bbd..8775905 100755 --- a/notify.py +++ b/notify.py @@ -4,14 +4,13 @@ import berserk, subprocess # Change ACCESS TOKEN according to your need ACCESS_TOKEN="" - +NOTIFY_DURATION=5*60 # Notification duration in seconds # Notify using notify-send def notify_send(summary, message): - subprocess.Popen(['notify-send', '-u', 'critical','-t', '99999999', summary, message]) + subprocess.Popen(['notify-send', '-u', 'critical','-t', str(NOTIFY_DURATION*1000), summary, message]) return - # Fetch data and notify session = berserk.TokenSession(ACCESS_TOKEN) client = berserk.Client(session=session)