From 63302d7b8cba7c169c11899b1fa81c0653ee2bf8 Mon Sep 17 00:00:00 2001 From: Sherif Awofiranye Date: Sun, 13 Aug 2023 03:34:48 +0100 Subject: [PATCH 1/2] Windows Notification Alert --- .../windows_notification_alert.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 WINDOWS NOTIFICATION ALERT SCRIPTS/windows_notification_alert.py diff --git a/WINDOWS NOTIFICATION ALERT SCRIPTS/windows_notification_alert.py b/WINDOWS NOTIFICATION ALERT SCRIPTS/windows_notification_alert.py new file mode 100644 index 00000000..10948f4c --- /dev/null +++ b/WINDOWS NOTIFICATION ALERT SCRIPTS/windows_notification_alert.py @@ -0,0 +1,13 @@ +from plyer import notification +import time + +if __name__ == "__main__": + + try: + message = "NOTIFICATION" + title = "SET UP YOU TIME" + while True: + notification.notify(title=title, message=message, timeout=10) + time.sleep(3600) + except KeyboardInterrupt: + print("Keyboard Interrupt the Program") From be48ba587d49ddbff4bda63b49be39e9a504ebb4 Mon Sep 17 00:00:00 2001 From: Sherif Awofiranye Date: Thu, 24 Aug 2023 16:51:10 +0100 Subject: [PATCH 2/2] Moved Project to existing files --- .../windows_notification_alert.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {WINDOWS NOTIFICATION ALERT SCRIPTS => AUTOMATION/WINDOWS NOTIFICATION ALERT SCRIPTS}/windows_notification_alert.py (100%) diff --git a/WINDOWS NOTIFICATION ALERT SCRIPTS/windows_notification_alert.py b/AUTOMATION/WINDOWS NOTIFICATION ALERT SCRIPTS/windows_notification_alert.py similarity index 100% rename from WINDOWS NOTIFICATION ALERT SCRIPTS/windows_notification_alert.py rename to AUTOMATION/WINDOWS NOTIFICATION ALERT SCRIPTS/windows_notification_alert.py