Hi Guys,
Is there anyway to add the Kodi Launcher for the VU+ boxes to the main menu on the Vix Image instead of going to plugins?
ive tried changing the plugin.py to this

def Plugins(**kwargs):
l = []
l.append(PluginDescriptor(where=PluginDescriptor.W HERE_SESSIONSTART, fnc=session_start_main))
l.append(PluginDescriptor(name=_("Kodi Launcher"), description=_("start kodi(formerly known as XBMC) mediacenter"), where=PluginDescriptor.WHERE_PLUGINMENU, fnc=plugin_start_xbmc))
return l

to

def Plugins(**kwargs):
l = []
l.append(PluginDescriptor(where=PluginDescriptor.W HERE_SESSIONSTART, fnc=session_start_main))
l.append(PluginDescriptor(name=_("Kodi"), description=_("start Kodi"), where=PluginDescriptor.WHERE_MENU, fnc=plugin_start_xbmc))
return l

but it just crashes my box when loading up the main menu, can someone help with the edit or point me in the right direction.

Many Thanks