Repository URL to install this package:
|
Version:
13.1-r5 ▾
|
enigma2-skin-metrixstylehd
/
usr
/
lib
/
enigma2
/
python
/
Plugins
/
Extensions
/
MetrixStyle
/
plugin.py
|
|---|
#!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
#######################################################################
#
# MyMetrix
# Coded by iMaxxx (c) 2013
# Mod MetrixStyle for DreamOS by arki
#
# This plugin is licensed under the Creative Commons
# Attribution-NonCommercial-ShareAlike 3.0 Unported License.
# To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/
# or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
#
# Alternatively, this plugin may be distributed and executed on hardware which
# is licensed by Dream Property GmbH.
#
# This plugin is NOT free software. It is open source, you are allowed to
# modify it (if you keep the license), but it may not be commercially
# distributed other than under the conditions noted above.
#
#############################################################
from Plugins.Plugin import PluginDescriptor
from metrixstyle import _
import metrixstyle
#############################################################
def main(session, **kwargs):
reload(metrixstyle)
session.open(metrixstyle.MetrixStyle)
def Plugins(**kwargs):
return PluginDescriptor(name="Skin MetrixStyle", description=_("Setup for Skin MetrixStyleHD"), where = PluginDescriptor.WHERE_PLUGINMENU, icon="plugin.png", fnc=main)
##############################################################