Skip to content

Instantly share code, notes, and snippets.

@yanbab
Last active March 21, 2025 09:57
Show Gist options
  • Save yanbab/15d456f1230927336c84ed736f107125 to your computer and use it in GitHub Desktop.
Save yanbab/15d456f1230927336c84ed736f107125 to your computer and use it in GitHub Desktop.
#/bin/sh
#
# Setup Kiosk mode for Alpine Linux
#
#!/bin/sh
USER=kiosk
KEYBOARD_LAYOUT=fr
KEYBOARD_MODEL=mac
WIDTH=1024
HEIGHT=768
BROWSER=chromium
PRIVATE=yes
TABS=yes
URL=https://www.google.com
# Install Xorg
#
setup-xorg-base
apk add xrandr setxkbmap xset xsetroot
# apk add xterm xeyes xcalc
# Enable Community repo
#
# Install Browser
#
apk add chromium
# Automatic login, no VTs, silent boot
#
cp /etc/inittab /etc/inittab.bak
cat << EOF > /etc/inittab
::sysinit:/sbin/openrc -q -C sysinit
::sysinit:/sbin/openrc -q -C boot
::wair:/sbin/openrc -q -C default
tty1::respawn:/bin/login -f kiosk
#tty2::respawn:/sbin/getty 38400 tty2
EOF
# Autostart Xorg
#
cat << EOF > /etc/skel/.profile
startx 2> /dev/null
EOF
# Xorg Session
cat << EOF > /etc/skel/.xinitrc
setxkbmap $KEYBOARD_LAYOUT $KEYBOARD_MODEL
exec chromium-browser
EOF
# Disable Xorg VT Switch
cat << EOF > /etc/X11/xorg.conf
Section "ServerFlags"
Option "DontVTSwitch" "true"
Option "DontZap" "true"
EndSection
EOF
# Create user
adduser $USER -D
# Silent Boot
echo "" > /etc/motd
echo "" > /etc/issue
@Regis208
Copy link

HI, I use this script as a build plate for an alpine kiosk with a chromium gui. But on reboot X11 try to restart and block the shutdown.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment