RPI kiosk mode fullscreen epiphany

Jesper Lundgren picture Jesper Lundgren · Jul 20, 2015 · Viewed 11.3k times · Source

I have a raspberry pi 2 model B with Raspbian that i want to boot into fullscreen browser.

I can get it boot into the browser with the right url, but not in fullscreen.

I am using ths command line to boot it up.

epiphany-browser http://mylink.com

What should i do to get it into fullscreen?

Answer

malleYay picture malleYay · Jul 22, 2015

install xautomation first:

sudo apt-get install xautomation

and then you can put this in a shell script:

#/!/bin/bash

epiphany-browser http://mylink.com &
sleep 15
xte "key F11" -x:0

Got it from link