diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-12-06 16:21:58 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-12-06 16:21:58 +0100 |
commit | a72c885c41d9511133cc4523da7a082c0b2f46d0 (patch) | |
tree | c5c41e346ccebc627ea45129157389ebaf6d2766 /bin | |
parent | 72a02162233bca1df80f57e7157d6d5d83257a74 (diff) |
checkpoint
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/extra/202020 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/extra/202020 b/bin/extra/202020 index 132d57b..1386058 100755 --- a/bin/extra/202020 +++ b/bin/extra/202020 @@ -1,11 +1,14 @@ #!/bin/sh +mpvwopts="mpv --no-resume-playback --volume=100" +sounds="$HOME/sync/share/sounds" + while true do sleep 20m - mpv --volume=100 .local/share/sounds/avert1.ogg & + $mpvwopts "$sounds"/avert1.ogg & herbe '202020' 'avert!' sleep 20s - mpv --volume=100 .local/share/sounds/avert2.ogg & + $mpvwopts "$sounds"/avert2.ogg & herbe '202020' 'stop averting' & done |