2013-10-29, 23:03
I run xbmc on ubuntu 12.04.3 in shell mode. From there I have set up Rom Browser Collection together with zsnes. I use a openbox as the window manager and a shell script to launch openbox and zsnes,
My script looks like this:
#!/bin/bash
pgrep -f xbmc.bin | xargs kill -STOP
openbox &
/usr/bin/zsnes "$@"
killall -9 openbox
pgrep -f xbmc.bin | xargs kill -CONT -fs
Everything works great, BUT everytime I exit zsnes in order to return to xbmc, xbmc always starts back up again in windowed mode(sits in the upper left corner on my screen). This is extremly annonying as I have to go in to settings in XBMC everytime I am done playing SNES and set the resolution back to fullscreen again.
Any inputs on how to start xbmc back up again in fullscreen mode? I have searched the web like a mad man without finding anything solid
My script looks like this:
#!/bin/bash
pgrep -f xbmc.bin | xargs kill -STOP
openbox &
/usr/bin/zsnes "$@"
killall -9 openbox
pgrep -f xbmc.bin | xargs kill -CONT -fs
Everything works great, BUT everytime I exit zsnes in order to return to xbmc, xbmc always starts back up again in windowed mode(sits in the upper left corner on my screen). This is extremly annonying as I have to go in to settings in XBMC everytime I am done playing SNES and set the resolution back to fullscreen again.
Any inputs on how to start xbmc back up again in fullscreen mode? I have searched the web like a mad man without finding anything solid