[Skin] AeonFHD mod by rafalcool1

There are 14 replies in this Thread which was already clicked 18,995 times. The last Post () by Linuxfan1948.

  • Hallo.

    zzpiocon (media/hdd) of the infobar are not displayed.

  • Hallo, wer kann helfen: Habe fast alle Versionen des Aeon-Skins probiert, Picons in der Grösse 400x170 (ZZ ) unter zzpicon in media/hdd gepackt - keine Anzeige. Picon in der Kanalliste werden angezeigt ( unter usr/share/enigma/picon.

  • With displaying this picon, so if you still do not see this picon please add to Renderer

    Code
    AeonFHDPicon2.py

    ] which is here

    Code
    usr / lib / enigma2 / python / Components / renderer /


    this entry

    Code
    '/ media / hdd /% s /'


    in this line

    You can also copy the entire line if you prefer.

    Save and restart gui.



  • The renderer existing...


    dfb15ca317b05b5930a8b.jpg



    Code
    root@vuzero4k:~#     '/ media / hdd /% s /'            
    -bash: / media / hdd /% s /: No such file or directory 
    root@vuzero4k:~# in this line                          
    -bash: syntax error near unexpected token `in'
  • Hi...

    I have installed AEON FHD skin v22 from satvenus panel on my openatv 6.3 on my VU+UNO4Kse and it's working.


    Unfortunately the picon on this image is not working....


    The picture is attached......

    dad04487378b4318a7a.jpg


    How can I solve this problem????


    I have put the picon folder in media/hdd.


    Here is the content of AeonFHDPicon2.py file.....


    ##

    ## Picon renderer by Gruffy .. some speedups by Ghost

    ##

    from Renderer import Renderer

    from enigma import ePixmap

    from Tools.Directories import fileExists, SCOPE_SKIN_IMAGE, SCOPE_CURRENT_SKIN, resolveFilename


    class AeonFHDPicon2(Renderer):

    searchPaths = ('/usr/share/enigma2/%s/', '/media/sde1/%s/', '/media/cf/%s/', '/media/sda1/%s/', '/media/usb/%s/', '/etc/%s/', '/media/sdb1/%s/' ,'/media/hdd/%s/')



    def __init__(self):

    Renderer.__init__(self)

    self.path = "zzpicon"

    self.nameCache = { }

    self.pngname = ""


    def applySkin(self, desktop, parent):

    attribs = [ ]

    for (attrib, value) in self.skinAttributes:

    if attrib == "path":

    self.path = value

    else:

    attribs.append((attrib,value))

    self.skinAttributes = attribs

    return Renderer.applySkin(self, desktop, parent)


    GUI_WIDGET = ePixmap


    def changed(self, what):

    if self.instance:

    pngname = ""

    if what[0] != self.CHANGED_CLEAR:

    service = self.source.service

    sname = service.toString()

    # strip all after last :

    pos = sname.rfind(':')

    if pos != -1:

    sname = sname[:pos].rstrip(':').replace(':','_')

    pngname = self.nameCache.get(sname, "")

    if pngname == "":

    pngname = self.findPicon(sname)

    if pngname != "":

    self.nameCache[sname] = pngname

    if pngname == "": # no picon for service found

    pngname = self.nameCache.get("default", "")

    if pngname == "": # no default yet in cache..

    pngname = self.findPicon("picon_default")

    if pngname == "":

    tmp = resolveFilename(SCOPE_CURRENT_SKIN, "picon_default.png")

    if fileExists(tmp):

    pngname = tmp

    else:

    pngname = resolveFilename(SCOPE_SKIN_IMAGE, "skin_default/picon_default.png")

    self.nameCache["default"] = pngname

    if self.pngname != pngname:

    self.instance.setPixmapFromFile(pngname)

    self.pngname = pngname


    def findPicon(self, serviceName):

    for path in self.searchPaths:

    pngname = (path % self.path) + serviceName + ".png"

    if fileExists(pngname):

    return pngname

    return ""


    Please Help me.....

    • Official Post

    enigma2-plugin-skins-aeonfhd_v22_rafalcool1_all

Enigma2 skins for oe-alliance based images.

Enigma2 skins for OpenATV, OpenDroid, OpenEight, OpenHDF, OpenNRF, OpenSPA, OpenViX and Pur-E2 images.

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!