Bare Bones Kiosk Setup Script for one or more Websites that works most of the time. (But now with an actual somewhat documentation and even easier installation scripts for lazy people like me)
|
|
9 місяців тому | |
|---|---|---|
| README.md | 9 місяців тому | |
| kiosk.sh | 9 місяців тому |
A really basic Bash script that helps you display one or multiple websites Kiosk style on Debian based distros.
What you need
Option 1 : Debian 12
Option 2 : Raspberry Pi OS Lite
ssh kiosk@your.debian.hostsuapt update && apt upgrade -y && apt install sudo dialog git htop tmux screen screenfetch -yecho 'export PATH=$PATH:/sbin:/usr/sbin' | tee -a ~/.bashrc ~/.profile > /dev/null && bashAdd kiosk user to sudo group
bash
usermod -aG sudo kiosk
exit
exit
exit
Sign back in via ssh ssh kiosk@your.debian.host
add sbin to bash paths for kiosk user echo 'export PATH=$PATH:/sbin:/usr/sbin' | tee -a ~/.bashrc ~/.profile > /dev/null && bash
download the kiosk and go to its folder git clone https://git.teleco.ch/crt/basic-kiosk.git/ && cd basic-kiosk