a6d320df58
* XFCE4/Hildon: Log to syslog, see also: <https://github.com/postmarketOS/pmbootstrap/pull/762> * Fix XFCE4 didn't start in qemu-amd64, because it required libEGL.so.1, which is provided by mesa-egl. This is a dependency of device-qemu-amd64-x11 now. (It worked for Hildon and Weston, because they pull mesa-egl in with other packages.)
15 lines
420 B
Bash
15 lines
420 B
Bash
#!/bin/sh
|
|
|
|
# XFCE4 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).
|
|
if [ "$(id -u)" = "1000" ] && [ "$(tty)" = "/dev/tty1" ]; then
|
|
# Start X11 with XFCE4
|
|
startxfce4 2>&1 | logger -t "$(whoami):x11"
|
|
|
|
|
|
# In case of failure, restart after 1s
|
|
sleep 1
|
|
exit
|
|
fi
|