7 lines
170 B
Python
Executable file
7 lines
170 B
Python
Executable file
#!/usr/bin/python3
|
|
|
|
"""This file is read every hour to signal a break should be made in working."""
|
|
|
|
from playsound import playsound
|
|
|
|
playsound("~/Programming/gong.wav")
|