Kodi Community Forum

Full Version: HELP with show weather and clock also if I play video or music
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all

First all I am new here...

i would like to do some change on kodi XML files

i dont know what of XML files i need to change for do my change (I run KODI 17.1 on windows | Eminence skin )

i want the weather and the clock info show also if i wach video or listen to music... (on the top corner on right side )

what do i need to add or change for do it work??

I post on dev fourm and they tell me to come here Big Grin

that my post..
http://forum.kodi.tv/showthread.php?tid=...pid2580707

i also try to play with the VideoFullScreen.xml file

and added weather parameter from MyWeather.xml file

and this not work for me

please helpSadConfusedSad

Thanks
Includes_Furniture.xml

Look for <include name="Furniture_TopBar"> towards the bottom of the file.

there will be a bit inside that include that looks like this:
Code:
.
            <control type="group">
                <include>Furniture_TopBar_Header</include>
            </control>
            <include>Furniture_TopBar_Clock</include>
        </control>
        <control type="group">

Move the line <include>Furniture_TopBar_Clock</include> down so it is AFTER the next </control> tag

e.g.
Code:
.
            <control type="group">
                <include>Furniture_TopBar_Header</include>
            </control>
        </control>
        <include>Furniture_TopBar_Clock</include>
        <control type="group">

Reload the skin and the clock should now always be visible.
Thanks Alot forWink

You help me alot

I spent on this 3 weeks Big Grin
Hey

Please you can help me one more time
and guide me how to do the same thing

for show always RSS FEED

many thanks
(2017-05-06, 02:37)jurialmunkey Wrote: [ -> ]Includes_Furniture.xml

Look for <include name="Furniture_TopBar"> towards the bottom of the file.

there will be a bit inside that include that looks like this:
Code:
.
            <control type="group">
                <include>Furniture_TopBar_Header</include>
            </control>
            <include>Furniture_TopBar_Clock</include>
        </control>
        <control type="group">

Move the line <include>Furniture_TopBar_Clock</include> down so it is AFTER the next </control> tag

e.g.
Code:
.
            <control type="group">
                <include>Furniture_TopBar_Header</include>
            </control>
        </control>
        <include>Furniture_TopBar_Clock</include>
        <control type="group">

Reload the skin and the clock should now always be visible.

Would you be kind to walk me through or explain where exactly in KODI do I find this entry as I would like to make same adjustments as well?
(2017-05-09, 13:22)underwriter Wrote: [ -> ]
(2017-05-06, 02:37)jurialmunkey Wrote: [ -> ]Includes_Furniture.xml

Look for <include name="Furniture_TopBar"> towards the bottom of the file.

there will be a bit inside that include that looks like this:
Code:
.
            <control type="group">
                <include>Furniture_TopBar_Header</include>
            </control>
            <include>Furniture_TopBar_Clock</include>
        </control>
        <control type="group">

Move the line <include>Furniture_TopBar_Clock</include> down so it is AFTER the next </control> tag

e.g.
Code:
.
            <control type="group">
                <include>Furniture_TopBar_Header</include>
            </control>
        </control>
        <include>Furniture_TopBar_Clock</include>
        <control type="group">

Reload the skin and the clock should now always be visible.

Would you be kind to walk me through or explain where exactly in KODI do I find this entry as I would like to make same adjustments as well?

you need to go kodi folder

the file location is
on Android Android/data/org.xbmc.kodi/files/.kodi/addons/skin.eminence.2/16x9
on iOS /private/var/mobile/Library/Preferences/Kodi/addons/skin.eminence.2/16x9
on Linux ~/.kodi/addons/skin.eminence.2/16x9
on Mac /Users/<your_user_name>/Library/Application Support/Kodi/addons/skin.eminence.2/16x9
on Windows %APPDATA%\kodi\addons\skin.eminence.2\16x9

and there all XML file

you need to change xml file

Includes_Furniture.xml

and folow jurialmunkey instructionTongue
Thanks a lot guyz1987 for the directives. I'll try that tonight.
(2017-05-06, 02:37)jurialmunkey Wrote: [ -> ]Includes_Furniture.xml

Look for <include name="Furniture_TopBar"> towards the bottom of the file.

there will be a bit inside that include that looks like this:
Code:
.
            <control type="group">
                <include>Furniture_TopBar_Header</include>
            </control>
            <include>Furniture_TopBar_Clock</include>
        </control>
        <control type="group">

Move the line <include>Furniture_TopBar_Clock</include> down so it is AFTER the next </control> tag

e.g.
Code:
.
            <control type="group">
                <include>Furniture_TopBar_Header</include>
            </control>
        </control>
        <include>Furniture_TopBar_Clock</include>
        <control type="group">

Reload the skin and the clock should now always be visible.

Great solution. Is there a way to make this into a service add-on, so it can be used across skins, and not be affected by skin updates?