From 01cbb03f407d4961bd0c079a3f32d4f036e9ce8f Mon Sep 17 00:00:00 2001
From: Tekano Mbonani <142930601+T3kan0@users.noreply.github.com>
Date: Wed, 30 Aug 2023 15:53:01 +0200
Subject: [PATCH] Add files via upload

---
 .../mac_os_desktop_notifier/desktop_notifier.py   | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 scripts/mac_os_desktop_notifier/desktop_notifier.py

diff --git a/scripts/mac_os_desktop_notifier/desktop_notifier.py b/scripts/mac_os_desktop_notifier/desktop_notifier.py
new file mode 100644
index 0000000..cc69c83
--- /dev/null
+++ b/scripts/mac_os_desktop_notifier/desktop_notifier.py
@@ -0,0 +1,15 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+
+#Import libraries
+import pync
+import time
+
+n = 10# number of seconds between notifications
+start = 0# number of second at the beginning of running code
+
+while True:
+    start += n
+    pync.notify("Type notification message here, e.g., ALERT!!!,"
+                +str(start)+"seconds have passed!")
+    time.sleep(n)# number of seconds between notifications