Skip to content

Instantly share code, notes, and snippets.

@Fake51
Last active June 14, 2016 05:19
Show Gist options
  • Save Fake51/9817085 to your computer and use it in GitHub Desktop.
Save Fake51/9817085 to your computer and use it in GitHub Desktop.
Raspbian: autostart browser on desktop init
# edit this file to add what you want to startup on desktop init
# /etc/xdg/lxsession/LXDE/autostart
#
# grabbed from http://alexba.in/blog/2013/01/07/use-your-raspberrypi-to-power-a-company-dashboard/
@lxpanel --profile LXDE
@pcmanfm --desktop --profile LXDE
#@xscreensaver -no-splash
# avoid screensaver/shut off on no activity
@xset s off
@xset -dpms
@xset s noblank
# hide mouse cursor on idle
@unclutter -idle 0
# open browser on url to display
@midori -e Fullscreen -a <url here>
@badf007
Copy link

badf007 commented Jun 14, 2016

work ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment