aboutsummaryrefslogtreecommitdiff
path: root/track.py
diff options
context:
space:
mode:
Diffstat (limited to 'track.py')
-rwxr-xr-xtrack.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/track.py b/track.py
index 933db09..d56d8b3 100755
--- a/track.py
+++ b/track.py
@@ -7,7 +7,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
@@ -72,4 +72,4 @@ def main():
sys.exit(1)
if __name__ == "__main__":
- main() \ No newline at end of file
+ main()