7 lines
156 B
Python
Executable file
7 lines
156 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("gong.wav")
|