I\'m trying to write an application that runs kivy at full screen. But these are my issues:
1) When I run the command:
#Config.set(\'graphics\', \'fullsc
Try
from kivy.core.window import Window Window.fullscreen = True
Do this before you App.run() method, and it should switch to fullscreen mode.
App.run()
Cheers