I have a script to run a python/GTK webbrowser on my raspberry pi.
The script:
#!/bin/bash
matchbox-windows-manager &
Xorg -nocursor
X -nocursor
xset -dpms
xset s off
xset s noblank
python display.py (this is the browser)
I'm looking for a way to remove the border and 'X' and make it full screen.
I have tried adding the -use_titlebar no; however I can't find in what context to use it.
machbox-windows-managertomatchbox-windows-manager(note the missing "t"). Is there a chance that this typo caused the window manager to not start at all and hence not made the application full-screen? – Axel Beckert May 06 '16 at 19:22