Posts: 12
Joined: Nov 2018
Reputation:
0
Hello it's my first post, nice forum i didn't fount the zone where insert the presentation discussion
i am using kodi 17.6 krypton, with the default skins, i am trying to add a category to the home screen,how can i do it?
using google i found that the default skin doesn't allow it edit, is it true?
can i use a kind of addons, to display the new category "anime" after "film" and "tv series"?
thank for your time
Posts: 12
Joined: Nov 2018
Reputation:
0
thank for the reply,
if i change the skin, can i do it edit easyer?
exist a list of skins that allow to edit the home screen?
Posts: 967
Joined: May 2017
Reputation:
83
anime
MENU
home.xml
in kodi go to video files select folder with anime click and add to favourites
open user\AppData\Roaming\Kodi\userdata and open favourites.xml in notepad++
goto addons\skin.test\xml open home.xml
find
< item>
<label>$LOCALIZE[342]</label>
<onclick condition="Library.HasContent(movies) + Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,videodb://movies/,return)</onclick>
<onclick condition="Library.HasContent(movies) + !Skin.HasSetting(home_no_categories_widget)">ActivateWindow(Videos,videodb://movies/titles/,return)</onclick>
<onclick condition="!Library.HasContent(movies)">ActivateWindow(Videos,sources://video/,return)</onclick>
<property name="menu_id">$NUMBER[5000]</property>
<thumb>icons/sidemenu/movies.png</thumb>
<property name="id">movies</property>
<visible>!Skin.HasSetting(HomeMenuNoMovieButton)</visible>
</item>
after </item> paste the new menu
you will need to replace <label>your folder</label>
< onclick>ActivateWindow(videos, Copy from favourites ,return)</onclick> this is the link to the new menu
=================================================
to set the menu path switch to favourites now copy the info for the folder
ActivateWindow(10025,"E:\\anime\\",return)
==============================================
NEW MENU _________________
<item>
<label>anime</label>
<onclick>ActivateWindow(10025,"E:\\anime\\",return)</onclick>
<property name="menu_id">$NUMBER[5000]</property>
<thumb>icons/sidemenu/movies.png</thumb>
<property name="id">movies</property>
<visible>!Skin.HasSetting(HomeMenuNoMovieButton)</visible>
</item>
Posts: 12
Joined: Nov 2018
Reputation:
0
the_other_guy i will try to use your indication, but can i use your guide with kody 17.6, krypton?
Posts: 12
Joined: Nov 2018
Reputation:
0
thank to both of you
i will try this edit... probably my pc will explode ahah
first of all i will back up the kpdi folder
i will write here the final result
Posts: 12
Joined: Nov 2018
Reputation:
0
thank, where i found the folder to copy?
and to chenge id is enougth if i rename the folder?
Posts: 21,264
Joined: Apr 2017
Reputation:
1,488
It is here... C:\Program Files (x86)\Kodi\addons\skin.estuary
Posts: 967
Joined: May 2017
Reputation:
83
if it is the same as 18
ActivateWindow(10025,"C:\\TIF\\anime\\",return)
this line gose in the onclick tag
<item>
<label>name</label>
<onclick>ActivateWindow(10025,"E:\\Blu-Ray\\",return)</onclick>
<property name="menu_id">$NUMBER[5000]</property>
<thumb>icons/sidemenu/movies.png</thumb>
<property name="id">movies</property>
<visible>!Skin.HasSetting(HomeMenuNoMovieButton)</visible>
</item>