Large Digital clock and date on VDF in Standby

TUT

Vu+ Newbie
Hi
I have just installed the latest BH 2.1.7 on my VU+ Ultimo after I have been using BH 2.0.5 for few years, I want to have a large digital clock and the date on the VDF in standby as I use to have it on BH 2.0.5 but i can't remeber how i did it before, can you please let me know how do i do that?
 

bouli

Vu+ Newbie
Hi,
Here is my /etc/enigma2/skin_user.xml file.
This is the official skin_user.xml for which I modified section InfoBarSummary, InfoBarMoviePlayerSummary and StandbySummary.

InfoBarSummary.JPG InfoBarMoviePlayerSummary.JPG StandbySummary.JPG

Take a look at section StandbySummary.
Code:
    <screen name="StandbySummary" position="0,0" size="256,64" id="1">
        <widget source="global.CurrentTime" render="Label" position="0,0" zPosition="1" size="120,20" font="VFD;18" halign="left" transparent="1">
            <convert type="ClockToText">Format:%A</convert>
        </widget>
        <widget source="global.CurrentTime" render="Label" position="135,0" zPosition="1" size="120,20" font="VFD;18" halign="right" transparent="1">
            <convert type="ClockToText">Format:%d/%m/%Y</convert>
        </widget>
        <widget source="global.CurrentTime" render="Label" position="40,22" size="113,32" font="VFD;40" halign="right" valign="center" transparent="1">
            <convert type="ClockToText">Format:%H:%M</convert>
        </widget>
        <widget source="global.CurrentTime" render="Label" position="155,20" zPosition="1" size="32,20" font="VFD;20" valign="center" transparent="1">
            <convert type="ClockToText">Format:%S</convert>
        </widget>
        <widget source="session.RecordState" render="Pixmap" pixmap="vfd_icons/vfd_icon_rec.png" position="227,52"  size="28,12">
            <convert type="ConditionalShowHide" />
        </widget>
    </screen>

Best regards,
Bouli
 

Attachments

  • skin_user.txt
    13.3 KB · Views: 17
  • vfd_icon_hd.png
    vfd_icon_hd.png
    1,022 bytes · Views: 10
  • vfd_icon_rec.png
    vfd_icon_rec.png
    1,009 bytes · Views: 7
Top