diff --git a/Blink_Eyes_Reminder/Blink_Eyes_Reminder.py b/Blink_Eyes_Reminder/Blink_Eyes_Reminder.py new file mode 100644 index 000000000..97b9502b5 --- /dev/null +++ b/Blink_Eyes_Reminder/Blink_Eyes_Reminder.py @@ -0,0 +1,9 @@ +import time +from plyer import notification +while(True): + notification.notify( + title = "Start Blinking you Eyes", + message = "Blinking nourishes your eye with oxygen and nutrients, keeping your eyes healthy and comfortable", + timeout = 10 + ) + time.sleep(1200) diff --git a/Blink_Eyes_Reminder/README.md b/Blink_Eyes_Reminder/README.md new file mode 100644 index 000000000..1c5d64bb7 --- /dev/null +++ b/Blink_Eyes_Reminder/README.md @@ -0,0 +1,27 @@ +# Blink Eyes Reminder + +We can remind user every 20 minutes during he is working on laptop or PC using notfication + +## Setup instructions + +Make sure that you have plyer package installed for this. If not you can do it by + +pip install plyer + +We will launch this script at start of the PC by making batch or exe file. + +## Detailed explanation of script, if needed + +We have added the infinte while loop, unless its manually interupted it will keep on runnning and notify user every 20 min. + +## Output + +User will get notfication on laptop or PC + +## Author(s) + +Bhushan K + +## Disclaimers, if any + +NA