I used LXDE and modify the autostart to operate in kiosk mode. Comment out the lxpanel and pcmanfm. create a shell script (startmyapp.sh) in the home directory that will set up any environment variables you need and launch your application:
sudo nano /etc/xdg/lxsession/LXDE/autostart And make the contents look like: #@lxpanel --profile LXDE #@pcmanfm --desktop --profile LXDE @xset s off @xset -dpms @xset s nonblank # Turn off the blinking lights sudo sh -c "echo none > /sys/class/leds/lcd4\:green\:usr0/trigger" sudo sh -c "echo none > /sys/class/leds/beaglebone\:green\:usr0/trigger" sudo sh -c "echo none > /sys/class/leds/beaglebone\:green\:usr1/trigger" sudo sh -c "echo none > /sys/class/leds/beaglebone\:green\:usr2/trigger" sudo sh -c "echo none > /sys/class/leds/beaglebone\:green\:usr3/trigger" # Start your application sudo sh -c "./startmyapp.sh > myapp.log" -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
