Created
November 9, 2019 21:06
-
-
Save nedimf/420ed70a64f11cc5506f55e9c3fda8c9 to your computer and use it in GitHub Desktop.
Reminder for coffee break (Linux&Python)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import threading | |
import notify2 | |
def coffee(): | |
threading.Timer(3600.0, coffe).start() #3600 seconds equals an hour | |
print ("Break!") | |
notify2.init('Reminder') | |
n = notify2.Notification('COFFE BREAK','Time for little break,you have been working really hard!') #Also you can costumize this part for your own message | |
n.show() | |
coffee() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Python 3
pip3 install notify2