From bab35d01a9b5b1ee96019cda4c3e75a6c2459921 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Sun, 7 Aug 2022 09:19:39 +0300 Subject: Cleanup osx notifications --- alarmpy/alarmpy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alarmpy/alarmpy.py b/alarmpy/alarmpy.py index 3588005..29890b9 100644 --- a/alarmpy/alarmpy.py +++ b/alarmpy/alarmpy.py @@ -205,7 +205,7 @@ class Alarm: areas_str = "\U0001f6a8" + ", ".join(areas.keys()) if self.desktop_notifications == "osx": os.system( - f'/usr/bin/osascript -e \'display notification "{areas_str}" with title "Alarms at {area}"\'' + f'/usr/bin/osascript -e \'display notification "{areas_str}" with title "Alarmpy"\'' ) else: os.system(f'/usr/bin/notify-send "{areas_str}"') -- cgit v1.3.1