Kodi Community Forum
Reset skin settings - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+--- Thread: Reset skin settings (/showthread.php?tid=184880)



Reset skin settings - Starman - 2014-01-30

I know this is a newbee question by how do I reset my skin to the original when I downloaded XBMC programHuh:Huh


RE: Reset skin settings - ronie - 2014-01-30

unless the skin provides such an option (i don't know if any of them do),
it's not really possible to do so.

the only option (which will reset all settings, including the xbmc ones)
is the delete the guisettings.xml file in your userdata folder.
(this should be done when xbmc is *not* running)


RE: Reset skin settings - Starman - 2014-01-30

Wow I think I will give it a shot
Can't hurt I guess I could uninstall and reinstall if need be
Just hate to have to redo all that I have done ;-((
Thank you for the quick reply


RE: Reset skin settings - User 55003 - 2014-01-30

'Skin.ResetSettings' should work but not many skins use it. You'll need to modify your skin by adding a button control (SkinSettings.xml is a good a place).

Code:
<control type="button">
    ...
    <label>Reset skin settings</label>
    <onclick>Skin.ResetSettings</onclick>
    <onclick>ReloadSkin()</onclick>
</control>



RE: Reset skin settings - rshannon - 2014-08-04

Within the Hybrid skin GUI, I could not find a way to change to any other skin, much less back to the default Confluence skin. Removing guisettings.xml and restarting XMBC still works but... is this really still the only way to do this? If so, why should a skin be allowed to permanently hijack the GUI skin selection? IMHO, there should be a skin coding standard that requires retention of a skin change option from within the GUI.


RE: Reset skin settings - Hitcher - 2014-08-04

(2014-08-04, 19:48)rshannon Wrote: Within the Hybrid skin GUI, I could not find a way to change to any other skin, much less back to the default Confluence skin. Removing guisettings.xml and restarting XMBC still works but... is this really still the only way to do this? If so, why should a skin be allowed to permanently hijack the GUI skin selection? IMHO, there should be a skin coding standard that requires retention of a skin change option from within the GUI.

Just installed Hybrid and it's the same as another skin -

System > Appearance > Skin > Skin


RE: Reset skin settings - myfototv - 2015-05-10

(2014-01-30, 03:20)Steveb Wrote: 'Skin.ResetSettings' should work but not many skins use it. You'll need to modify your skin by adding a button control (SkinSettings.xml is a good a place).

Code:
<control type="button">
    ...
    <label>Reset skin settings</label>
    <onclick>Skin.ResetSettings</onclick>
    <onclick>ReloadSkin()</onclick>
</control>

Hi there, wow this is almost what i need!.

Is there a way to make kodi restart the skin

somehing like

Code:
<control type="script">
     <control>
    <label>Restart skin</label>
    <onclick>StopSkin ; ReloadSkin() </onclick>
     </control>