• 1
  • 90
  • 91
  • 92(current)
  • 93
  • 94
  • 147
Release Aura
(2019-02-04, 16:56)Joe23rep Wrote: hey jurial -

can u explain me how i change the weather icons from the flat white icons to the nicer onces?


i went to the includes topbar. xml file and changed line 621 from .weathericons.white to .weathericons.default


in horizon this seemed to do the trick cuz its working there.

everything else i changed worked out fine but this one doesn't.



oh- and a feature request for the leia version of horizon- could u implement the same code u used in aura which lets the skin update itself? in horizon i always had to reload the skin to get the Youtube widget to show the newest videos in my sub box. in aura it always renews that from alone and thats awesome.



edit: found it. it was row 234. all good now
What program do you use to edit the code? Do you mind posting a picture of the change icons? I wanna see if it's worth it to change them over. I downloaded those files Im pretty sure when I installed Aura but wasn't sure how to activate them.
Reply
i have a shied. simply used es file explorer.

u just need to make sure that "show hidden files is enabled"


go to ur file explorer of ur choice and go into the kodi folder. on Android its located at home/android/data/org. xmbc. kodi.

in linux its in your home folder and is called .kodi


heres the android way- home/android/data/org. xmbc. kodi/files/. kodi (hidden from here so make sure hidden files are visible) /addons/skin. aura. master/1080i

there its the includes_topbar folder.


in the folder simply change line 234 from .white to .default.



then simply reload the skin


heres how it looks:Image
Reply
one small change id like to make but i cant find the folder id have to make it in.

the text labels above the widgets- how can i change their size?

i already created a new font for it so id just have to change these and not all other items which share the same font.


i checked everything but can't seem to find it.


TIAImage
Reply
(2019-02-04, 18:11)Joe23rep Wrote: i have a shied. simply used es file explorer.

u just need to make sure that "show hidden files is enabled"


go to ur file explorer of ur choice and go into the kodi folder. on Android its located at home/android/data/org. xmbc. kodi.

in linux its in your home folder and is called .kodi


heres the android way- home/android/data/org. xmbc. kodi/files/. kodi (hidden from here so make sure hidden files are visible) /addons/skin. aura. master/1080i

there its the includes_topbar folder.


in the folder simply change line 234 from .white to .default.



then simply reload the skin


heres how it looks:Image
Ok cool I have the shield too. Ill try using xplore for the file program....that does look nice. Thanks
Reply
Any idea when this will be on the Kodi repo?
Reply
(2019-02-04, 18:20)Joe23rep Wrote: one small change id like to make but i cant find the folder id have to make it in.

the text labels above the widgets- how can i change their size?

i already created a new font for it so id just have to change these and not all other items which share the same font.


i checked everything but can't seem to find it.


TIAImage
In file Includes_Widgets.xml find:
Code:
                <control type="label">
                    <left>2</left>
                    <textcolor>main_fg_100</textcolor>
                    <label>$PARAM[label]</label>
                    <include>Statusbar_Menubar_Items</include>
                </control>
(about 507 line)
and change it for:
Code:
                <control type="label">
                    <left>2</left>
                    <textcolor>main_fg_100</textcolor>
                    <font>font_tiny_uppercase</font> 
                    <label>$PARAM[label]</label>
                    <include>Statusbar_Menubar_Items</include>
                </control>
 

Where font_tiny_uppercase is font name from Font.xml - you can experiment with other font names
Reply
Hello
a question I am new and I just downloaded Aura, I would like my movies and series to be at the beginning how can I do that, thank you very much for your help

regards
Reply
(2019-02-05, 18:52)ravz Wrote: Hello
a question I am new and I just downloaded Aura, I would like my movies and series to be at the beginning how can I do that, thank you very much for your help

regards

Skin Settings > Home > Customise Home Menu
Arctic Fuse - Alpha now available. Support me on Ko-fi.
Reply
@jurialmunkey 
Please remove in Includes_OSD.xml this:
<param name="directory" value="color" />
from line: 135, 308, 331
Thanks to this, in the osd the service icons imdb or tmdb will be displayed according to the Monochrome flags setting

BTW  - great skin
Reply
(2019-02-06, 08:16)tomasiek Wrote: @jurialmunkey 
Please remove in Includes_OSD.xml this:
<param name="directory" value="color" />
from line: 135, 308, 331
Thanks to this, in the osd the service icons imdb or tmdb will be displayed according to the Monochrome flags setting

BTW  - great skin

It's not as simple as just deleting the param - doing that breaks colour flags.

Anyway, it's fixed on latest git
https://github.com/jurialmunkey/skin.aur...6daf50b84d

Thanks for reporting the bug! Smile
Arctic Fuse - Alpha now available. Support me on Ko-fi.
Reply
Actually - I did not check the other way Smile I did a quick fix at home and I was happy. The error came up with my own "patching" of the skin ...
Reply
Hi there !
Is there a way to display the next episode to play AND when I click on it, if plays the episode (or display info of it) and not just letting me find it on the list ?
Reply
@jurialmunkey
Did you see my request/question a few threads back?
https://forum.kodi.tv/showthread.php?tid...pid2815618

Thanks
Setup: LG OLED65B7 | Denon AVR X7200WA | OPPO UDP-203 4K Blu-Ray player | Nvidia Shield TV | KEF T205
My Favorite Skin: Arctic Horizon
Reply
(2019-02-05, 16:08)tomasiek Wrote:
(2019-02-04, 18:20)Joe23rep Wrote: one small change id like to make but i cant find the folder id have to make it in.

the text labels above the widgets- how can i change their size?

i already created a new font for it so id just have to change these and not all other items which share the same font.


i checked everything but can't seem to find it.


TIAImage
In file Includes_Widgets.xml find:
Code:
                <control type="label">
                    <left>2</left>
                    <textcolor>main_fg_100</textcolor>
                    <label>$PARAM[label]</label>
                    <include>Statusbar_Menubar_Items</include>
                </control>
(about 507 line)
and change it for:
Code:
                <control type="label">
                    <left>2</left>
                    <textcolor>main_fg_100</textcolor>
                    <font>font_tiny_uppercase</font> 
                    <label>$PARAM[label]</label>
                    <include>Statusbar_Menubar_Items</include>
                </control>
 

Where font_tiny_uppercase is font name from Font.xml - you can experiment with other font names
thx.

thats it
Reply
Just wanted to say thanks for creating this amazing skin. Had been using eminence since forever but this one made me switch. Love the look and feel. Another great skin from the best kodi skinner in the game!
Reply
  • 1
  • 90
  • 91
  • 92(current)
  • 93
  • 94
  • 147

Logout Mark Read Team Forum Stats Members Help
Aura19