Thomas Stallinger 50e41e2230 feat: switch kiosk autostart from terminal installer to Epiphany browser kiosk
Replaces the gnome-terminal-launched installer.sh session with a
browser-based kiosk (opt/tuxflotte/kiosk/start-kiosk.sh launching
Epiphany with --profile). Sets German keyboard layout for the
graphical session (vconsole.keymap only covers the text console),
suppresses Epiphany's default-browser prompt, hides desktop icons,
and reduces the panel to a window list + power applet. Also disables
the SELinux troubleshooter desktop notification, and copies the full
live-updates tree (not just etc/) so opt/ payload ships too.

Several Epiphany invocation modes were tried and discarded before
landing on plain --profile=<dir> (see ADR-0004/0006 and platform-docs
history for the rejected --application-mode/--private-instance paths).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-22 12:12:37 +02:00

34 lines
581 B
HTML

<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Tuxflotte Provisioning</title>
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: #ffffff;
color: #3465a4;
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
img {
max-width: 60%;
margin-bottom: 2rem;
}
p {
font-size: 1.2rem;
}
</style>
</head>
<body>
<img src="logo.svg" alt="Tuxflotte">
<p>Kiosk-Oberfläche in Entwicklung.</p>
</body>
</html>