Home › Forums › Forums › Technical Support for PiScreen › Startx does not work automatically on /etc/rc.local › Reply To: Startx does not work automatically on /etc/rc.local
June 19, 2015 at 9:21 pm #4148
phantom_83
Participant
sorry for the delay. I was busy at work . Here is the content of rc.local:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will “exit 0” on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
# Print the IP address
_IP=$(hostname -I) || true
if [ “$_IP” ]; then
printf “My IP address is %s\n” “$_IP”
fi
su -l pi -c “env FRAMEBUFFER=/dev/fb1 startx &”
exit 0