diff --git a/Dekstop_Notification/Drink_Water_Notification.py b/Dekstop_Notification/Drink_Water_Notification.py new file mode 100644 index 000000000..cfb17bf6a --- /dev/null +++ b/Dekstop_Notification/Drink_Water_Notification.py @@ -0,0 +1,13 @@ +import time +from plyer import notification + +if __name__ == "__main__": + while True: + notification.notify( + title = "Please Drink Water", + message = "The National Academies of Sciences, Engineering, and Medicine determined that an adequate daily fluid intake is: About 15.5 cups (3.7 liters) of fluids for men. About 11.5 cups (2.7 liters) of fluids a day for women.", + app_name = "Drink_Water_Notification", + app_icon = "D:\\Abdul Rehman\\AI Automations\\Dekstop_Notification\\Icon.ico", + timeout = 10) + #Time to After which you want the Notfication in Sec + time.sleep(5) diff --git a/Dekstop_Notification/Icon.ico b/Dekstop_Notification/Icon.ico new file mode 100644 index 000000000..ddda81281 Binary files /dev/null and b/Dekstop_Notification/Icon.ico differ