diff --git a/frontend/guides/raspberry-pi-digital-signage.html b/frontend/guides/raspberry-pi-digital-signage.html index 13206d1..0da6109 100644 --- a/frontend/guides/raspberry-pi-digital-signage.html +++ b/frontend/guides/raspberry-pi-digital-signage.html @@ -81,7 +81,13 @@

Step 2: Run the ScreenTinker installer

Open a terminal on the Pi and run:

-
curl -sL https://screentinker.com/scripts/raspberry-pi-setup.sh | bash
+
curl -sL https://screentinker.com/scripts/raspberry-pi-setup.sh | sudo bash
+

The sudo is required — the installer writes systemd units, installs packages and + configures autostart. Without it the script stops on its first line and prints the correct + command, so nothing is half-installed.

+

That gives you All-in-One: the server and the player on the same Pi. To use + the Pi as a player only, pointing at a ScreenTinker server you already run:

+
curl -sL https://screentinker.com/scripts/raspberry-pi-setup.sh | sudo bash -s -- --player-only https://your-server

The script will: