Я хочу настроить Raspberry Pi, чтобы сделать только это:
-загрузка в режиме киоска веб-браузера (сделано: это было легко, используя raspi-config, делая загрузку в Chromiun-браузер и редактируя /etc / xdg / openbox / autostartx добавление
***#!/bin/bash
xset s noblank
xset s off
xset -dpms
sed -i 's/"exited_cleanly":false/"exited_cleanly":true/' /home/pi/.config/chromium/Default/Preferences
sed -i 's/"exit_type":"Crashed"/"exit_type":"Normal"/' /home/pi/.config/chromium/Default/Preferences
/usr/bin/chromium-browser --noerrdialogs --disable-infobars --kiosk https://url &***")
-restart the device every x time (done with "**sudo nano crontab -e**" and adding at the end "**00 4 * * * sudo reboot**")
-make to refresh the custom URL every 2 min after nobody is using the raspberry (try it with xdotool but it only does alt+Home every x time if someone is using or not)
-disable all the short cut or key combination (try with xmodmap and nothing happens)