- sudo apt install firefox xserver-xorg-legacy xserver-xorg # oder auch firefox-esr, je nach Verfügbarkeit
- git clone https://gitli.stratum0.org/kasalehlia/s0infodisplay/ # macht lokal einen HTTP-Server und baut die HTML-Seite
- git clone https://github.com/rohieb/infopoint-html.git # startet einen Firefox im Vollbild
- sudo cp s0infodisplay/s0infodisplay.service infopoint-html/infopoint-html.service /etc/systemd/system/
- sudo systemctl daemon-reload
- echo "allowed_users = anybody" | sudo tee /etc/X11/Xwrapper.config # systemd-logind session activation umgehen...
+
+Pakete installieren:
+ sudo apt -y install git firefox-esr xserver-xorg-legacy xserver-xorg x11-xserver-utils python3-rpi.gpio python3-venv cec-utils xinit libicu-dev unattended-upgrades
+ # oder auch 'firefox', je nach Verfügbarkeit
+ #
+ # ggf nötig, aber vermutlich nicht mehr, da libcec aus den repos wieder läuft und nicht mehr selbst gebaut werden muss:
+ # sudo apt -y install cmake libp8-platform-dev libudev-dev
+
+s0infodisplay macht lokal einen HTTP-Server und baut die HTML-Seite:
+ git clone https://gitli.stratum0.org/kasalehlia/s0infodisplay/
+ cd s0infodisplay/
+ python3 -m venv env
+ source env/bin/activate
+ pip install -r requirements.txt
+ # python3 main.py
+
+infopoint-html startet einen Firefox im Vollbild:
+ cd
+ git clone https://github.com/rohieb/infopoint-html.git
+ echo -e '#!/bin/sh\nexec /home/pi/infopoint-html/src/infopoint-html' | sudo tee /usr/bin/infopoint-html
+ sudo chmod +x /usr/bin/infopoint-html