Peder Bergebakken Sundt
bf2e5956ba
It will regularily set the volume to 0, neat when testing out the player. This option was also added to dev.sh
8 lines
159 B
Bash
Executable File
8 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
if ! which entr > /dev/null; then
|
|
echo "entr is not installed, aborting..."
|
|
exit 1
|
|
fi
|
|
|
|
find . -name "*.py" | entr -r ./main.py --no-volume
|