Get view-menu to play the interface sound

This commit is contained in:
2020-03-21 23:45:51 +00:00
parent 83aa1c4768
commit bcaf3d9b58
7 changed files with 151 additions and 21 deletions

6
scripts/convert-wav Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
for file in $(ls $1/*.wav); do
ffmpeg -i $file -codec:a libvorbis $file.ogg
done