mirror of
https://github.com/metafy-social/python-scripts.git
synced 2025-03-13 17:19:50 +00:00
Add files via upload
This commit is contained in:
parent
3108d05d03
commit
01cbb03f40
15
scripts/mac_os_desktop_notifier/desktop_notifier.py
Normal file
15
scripts/mac_os_desktop_notifier/desktop_notifier.py
Normal file
@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
#Import libraries
|
||||
import pync
|
||||
import time
|
||||
|
||||
n = 10# number of seconds between notifications
|
||||
start = 0# number of second at the beginning of running code
|
||||
|
||||
while True:
|
||||
start += n
|
||||
pync.notify("Type notification message here, e.g., ALERT!!!,"
|
||||
+str(start)+"seconds have passed!")
|
||||
time.sleep(n)# number of seconds between notifications
|
Loading…
x
Reference in New Issue
Block a user