Kodi Community Forum

Full Version: Where to define skin default settings?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Heya,

Just started skin modding a couple of days ago. I was wondering how i can change the default skin settings? For example if i install a certain skin the setting for lower horizontal menu if default off. Now i want it to be default on when the skin is installed.

How do i do that?

Thanks for the help!
invert the skin setting button, using the !

Code:
<control type="radiobutton">
   ....
   <selected>!Skin.HasSetting(Foo)</selected>
</control>


then for the 'lower horizontal menu', use
Code:
<visible>!Skin.HasSetting(Foo)</visible>
Ok, thanx. What xml can i find the settings in?
depends on the skin your using.
modding the Cirrus skin
should be custom_SkinSetting_1111.xml then.
Thanx, going to try it!