How to launch Epiphany browser fullscreen on startup with Raspbian
First, in order to use the xte command, install xautomation: # apt-get install xautomation Then, create a shell script: # vim /home/pi/startup.sh And add in startup.sh file #!/bin/bash sleep 5 sudo -u pi epiphany-browser -a –profile ~/.config http://localhost & xte ‘sleep 15’ ‘key F11’ -x:0 Finally edit autostart # vim /home/pi/.config/lxsession/LXDE-pi/autostart And add at the…