This commit is contained in:
mmaster 2021-09-21 21:55:50 +02:00
parent ed9da80cad
commit b9be2c192d
1 changed files with 2 additions and 1 deletions

View File

@ -5,5 +5,6 @@ $player="cvlc"
$playerparam="--no-osd --play-and-exit"
while true; do
$player $playerparam "$(find "$folder" -maxdepth 1 -type f |sort -R |head -n1)"
file="$(find "$folder" -maxdepth 1 -type f |sort -R |head -n1)"
$player $playerparam $file
done