User Tools

Site Tools


kodi:kodi-config

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
kodi:kodi-config [2025/08/29 00:46] – [Clock in music] Wulf Rajekkodi:kodi-config [2025/09/18 15:38] (current) Wulf Rajek
Line 530: Line 530:
 </code> </code>
  
 +===== Estuary Mod 2 NG adjustments =====
 +
 +Auto focus first menu item in skin settings:
 +<code>
 +sed -i.bak 's/<defaultcontrol always="true">9000<\/defaultcontrol>/<defaultcontrol always="true">9000<\/defaultcontrol>/' ~/.kodi/addons/skin.estuary.modv2/xml/SkinSettings.xml
 +</code>
 +
 +
 +Exclude in-progress movies from unwatched list:
 +<code>
 +sed -i.bak '/<\/rule>/a\ \ \ \ <rule field="inprogress" operator="false" \/>' ~/.kodi/addons/skin.estuary.modv2/playlists/unwatched_movies.xsp
 +</code>
 +
 +Reduce font size of CPU usage on Hardware screen for 12 core system
 +<code>
 +sed -i.bak '1269s/font14/font12/' ~/.kodi/addons/skin.estuary.modv2/xml/Home.xml
 +</code>
 +
 +Add option to close Video OSD immediately when resuming:
 +<code>
 +cd ~/.kodi/addons/skin.estuary.modv2
 +
 +
 +sed -i.bak 's/<onclick condition="String.IsEqual(Skin.String(autoclose_osd),31578)">Skin.SetString(autoclose_osd,31580)<\/onclick>/<onclick condition="String.IsEqual(Skin.String(autoclose_osd),31579)">Skin.SetString(autoclose_osd,31580)<\/onclick>/' xml/SkinSettings.xml
 +
 +sed -i '/<onclick condition="String.IsEqual(Skin.String(autoclose_osd),31579)">Skin.SetString(autoclose_osd,31580)<\/onclick>/a\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ <onclick condition="String.IsEqual(Skin.String(autoclose_osd),31578)">Skin.SetString(autoclose_osd,31579)<\/onclick>' xml/SkinSettings.xml
 +
 +sed -i 's/!String.IsEqual(Skin.String(autoclose_osd),31578) + /!String.IsEqual(Skin.String(autoclose_osd),31578) + !String.IsEqual(Skin.String(autoclose_osd),31579) + /' xml/SkinSettings.xml
 +
 +sed -i.bak '/Skin.String(autoclose_osd),31578)">\$LOCALIZE\[31578\]<\/value>/a\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ <value condition="String.IsEqual(Skin.String(autoclose_osd),31579)">$LOCALIZE[31579]<\/value>' xml/Variables.xml
 +
 +sed -i.bak "/msgctxt \"#31579\"/imsgctxt \"#31579\"\nmsgid \"0 seconds\"\nmsgstr \"\"\n\n" language/resource.language.en_gb/strings.po
 +
 +# other closing times defined in xml/Custom_1110_CloseVideoOSD.xml
 +</code>
 +
 +Move next episodes to watch to top. Install embuary helper addon (through skin settings)
 +in Home.xml move this:
 +<code>
 +                                <include content="WidgetNextWatchEpisodes" condition="System.AddonIsEnabled(script.embuary.helper) + Library.HasContent(tvshows) + !Skin.HasSetting(hide_nextepisodes) + Skin.HasSetting(HomeBanner)">
 +                                        <param name="content_path" value="plugin://script.embuary.helper?info=getnextup"/>
 +                                        <param name="widget_header" value="$LOCALIZE[31212]"/>
 +                                        <param name="widget_header_focus" value="$INFO[Container(6700).ListItem.TVShowTitle, | , - ]$INFO[Container(6700).ListItem.Season,,x]$INFO[Container(6700).ListItem.Episode,,. ]$INFO[Container(6700).ListItem.Title]$INFO[Container(6700).ListItem.Year, (,)]"/>
 +                                        <param name="browse" value="never"/>
 +                                        <param name="widget_target" value="videos"/>
 +                                        <param name="list_id" value="6700"/>
 +                                </include>
 +                                <include content="WidgetNextWatchEpisodesBanner" condition="System.AddonIsEnabled(script.embuary.helper) + Library.HasContent(tvshows) + !Skin.HasSetting(hide_nextepisodes) + !Skin.HasSetting(HomeBanner)">
 +                                        <param name="content_path" value="plugin://script.embuary.helper?info=getnextup"/>
 +                                        <param name="widget_header" value="$LOCALIZE[31212]"/>
 +                                        <param name="widget_header_focus" value="$INFO[Container(67001).ListItem.TVShowTitle, | , - ]$INFO[Container(67001).ListItem.Season,,x]$INFO[Container(67001).ListItem.Episode,,. ]$INFO[Container(67001).ListItem.Title]$INFO[Container(67001).ListItem.Year, (,)]"/>
 +                                        <param name="widget_target" value="videos"/>
 +                                        <param name="browse" value="never"/>
 +                                        <param name="list_id" value="67001"/>
 +                                </include>
 +</code>
 +
 +just under:
 +<code>
 +                                <include content="WidgetListCategoriesSmall" condition="Library.HasContent(tvshows) + !Skin.HasSetting(hide_tvshowscategory)">
 +                                        <param name="widget_header" value="$LOCALIZE[31148]"/>
 +                                        <param name="list_id" value="69001"/>
 +                                        <param name="visible" value="Skin.HasSetting(UseSmallerCategories)" />
 +                                </include>
 +</code>
  
kodi/kodi-config.txt · Last modified: by Wulf Rajek