2017-10-06 18:34:51 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Hildon autostart on tty1 (Autologin on tty1 is enabled in
|
|
|
|
# /etc/inittab by postmarketos-base post-install.hook).
|
|
|
|
# This is a temporary solution, we'll need something like a
|
|
|
|
# display manager in the long run (#656).
|
2017-10-12 20:08:10 +00:00
|
|
|
if [ "$(id -u)" = "1000" ] && [ "$(tty)" = "/dev/tty1" ]; then
|
2017-10-06 18:34:51 +00:00
|
|
|
# Start X11 with Hildon
|
2017-10-24 16:16:58 +00:00
|
|
|
startx /etc/postmarketos-ui/xinitrc_hildon.sh 2>&1 | logger -t "$(whoami):x11"
|
|
|
|
|
2017-10-06 18:34:51 +00:00
|
|
|
|
|
|
|
# In case of failure, restart after 1s
|
|
|
|
sleep 1
|
|
|
|
exit
|
|
|
|
fi
|