from Plugins.Plugin import PluginDescriptor
from Components.ActionMap import ActionMap
from Screens.Console import Console
cmd = "/usr/script/start.sh"
def main(session, **kwargs):
session.open(Console,_("Start V13"),[cmd])
def Plugins(**kwargs):
return [PluginDescriptor(name="V13 starten", description=_("OSCam und MGCamd starten"), where = PluginDescriptor.WHERE_PLUGINMENU, fnc=main),
PluginDescriptor(name="V13 starten", description=_("OSCam und MGCamd starten"), where = PluginDescriptor.WHERE_EXTENSIONSMENU, fnc=main)]