6 lines
224 B
Bash
6 lines
224 B
Bash
# Démarrage automatique de Xorg + Calamares sur tty1 (autologin root).
|
|
# La session X exécute /root/.xinitrc qui lance Openbox + Calamares.
|
|
if [[ "$(tty)" == "/dev/tty1" && -z "$DISPLAY" ]]; then
|
|
exec startx -- vt1
|
|
fi
|