diff --git a/calendar_notifications/bin/honk.m4a b/calendar_notifications/bin/honk.m4a new file mode 100644 index 0000000..cadcd95 Binary files /dev/null and b/calendar_notifications/bin/honk.m4a differ diff --git a/calendar_notifications/handle_event_start/zoom_meeting_handler.py b/calendar_notifications/handle_event_start/zoom_meeting_handler.py index c12d01c..fa602f4 100644 --- a/calendar_notifications/handle_event_start/zoom_meeting_handler.py +++ b/calendar_notifications/handle_event_start/zoom_meeting_handler.py @@ -30,7 +30,7 @@ def open_zoom_link(conf_number: int | str) -> None: class ZoomMeetingHandler(AbstractEventStartHandler): @staticmethod def play_notification_sound(_: iCalComponent): - path_to_notification = get_sources_root() / "bin" / "notification.mp3" + path_to_notification = get_sources_root() / "bin" / "honk.m4a" subprocess.run(f"afplay {str(path_to_notification.resolve())}", shell=True) logger.info("Played notification sound.")