remove --no-terminal flag from mpv

This commit is contained in:
Denis Lehmann 2021-04-25 02:30:02 +02:00
parent 433e177e7f
commit 0825b0b067

4
strm
View file

@ -115,8 +115,8 @@ if [ "$list" == false ]; then
# Play all remote files
if [ "$shuffle" == true ]; then
mpv --no-terminal --shuffle "${results[@]}"
mpv --shuffle "${results[@]}"
else
mpv --no-terminal "${results[@]}"
mpv "${results[@]}"
fi
fi