Desktop Notification
September 26, 2022
import time
from plyer import notification
# http://www.pillalamarri.in/python/desktop-notification/
if __name__ == "__main__":
while True:
notification.notify(
title = "ALERT!!!",
message = "Take a break! It has been an hour!",
timeout = 10
)
time.sleep(3600)
# http://www.pillalamarri.in/python/desktop-notification/
Posted in Python