diff options
Diffstat (limited to 'Scripts/.local/scripts/timer')
-rwxr-xr-x | Scripts/.local/scripts/timer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Scripts/.local/scripts/timer b/Scripts/.local/scripts/timer index 84ee095..2cb61c4 100755 --- a/Scripts/.local/scripts/timer +++ b/Scripts/.local/scripts/timer @@ -8,7 +8,7 @@ def speak(text: str, volume=100, word_gap=20): system(f'espeak -a {volume} -g {word_gap} -k 20 "{text}"') def alert(text:str): - run(["notify-send", text]) + run(["notify-send", "timer: " + text]) def beep(time): system(f"play -q -n synth {time} sin 880") |