FD- / RPiPlay

An open-source AirPlay mirroring server for the Raspberry Pi. Supports iOS 9 and up.
GNU General Public License v3.0
4.91k stars 355 forks source link

Starting RPiPlay at system start #260

Open ITegs opened 2 years ago

ITegs commented 2 years ago

In the wiki the following is described to start RPiPlay at system start:

if [ "x${SSH_TTY}" = "x" ]; then /home/pi/rpiplay # Or wherever the rpiplay binary is located fi

But for me it gave an error, which I fixed as follows:

if [ "x${SSH_TTY}" = "x" ]; then
    rpiplay -n AppleTV -a hdmi -l # The normal start command here
fi

If this error was only displayed for me this issue can be removed, otherwise you can fix the wiki.

P.S Thanks for the great project! :octocat:

Joe-Bigfoot commented 2 years ago

you have to make sure, that you execute to runn command in the "RPiPlay/build" -Folder