01-04-2020, 03:22 PM
@antipiot
I assume you've marked the playlist_importer.sh script as executable.
Probably you need to run your script in the background, e.g., in rc.local, add a trailing ampersand
Regards,
Kent
I assume you've marked the playlist_importer.sh script as executable.
Probably you need to run your script in the background, e.g., in rc.local, add a trailing ampersand
Code:
/home/pi/playlist_importer.sh > /dev/null 2>&1 &
Kent