2018-02-23, 04:09
@mxlance
The widgets code is in Includes_Widgets.xml - specifically the grouplist is at these lines
https://github.com/jurialmunkey/skin.aur...#L373-L405
There is a spacer group at the top, which is used to change the gap between the top and the first widget item. The value for widget_spacer_top is defined in Constants_Main.xml, but you can edit the value here by directly putting in a number. Make the value bigger and it should push the widget further down the screen.
This bit is the submenu categories widget, so you can delete it if you aren't using it
https://github.com/jurialmunkey/skin.aur...#L386-L392
Directly underneath are the templates for each of the 8 possible widgets (3002-3009). If you only want one widget per menu item, then remove the includes for 3003-3009 so only 3002 is used.
https://github.com/jurialmunkey/skin.aur...#L393-L400
All the background code is defined in Includes_Global.xml
The overlay over the background is defined here, so you want to add a condition to not show the overlay group for home and then add your own separate group for the overlay on the homescreen..
The overlay is made of three parts: a flat texture that dims the fanart by a certain amount, the coloured vignette overlay, and then a second vignette which applies a gray vignette around the screen edges.
https://github.com/jurialmunkey/skin.aur...l#L92-L107
Let me know if you need anything else
The widgets code is in Includes_Widgets.xml - specifically the grouplist is at these lines
https://github.com/jurialmunkey/skin.aur...#L373-L405
There is a spacer group at the top, which is used to change the gap between the top and the first widget item. The value for widget_spacer_top is defined in Constants_Main.xml, but you can edit the value here by directly putting in a number. Make the value bigger and it should push the widget further down the screen.
Code:
<control type="group" id="331" description="Spacer">
<height>widget_spacer_top</height>
</control>
This bit is the submenu categories widget, so you can delete it if you aren't using it
https://github.com/jurialmunkey/skin.aur...#L386-L392
Directly underneath are the templates for each of the 8 possible widgets (3002-3009). If you only want one widget per menu item, then remove the includes for 3003-3009 so only 3002 is used.
https://github.com/jurialmunkey/skin.aur...#L393-L400
All the background code is defined in Includes_Global.xml
The overlay over the background is defined here, so you want to add a condition to not show the overlay group for home and then add your own separate group for the overlay on the homescreen..
The overlay is made of three parts: a flat texture that dims the fanart by a certain amount, the coloured vignette overlay, and then a second vignette which applies a gray vignette around the screen edges.
https://github.com/jurialmunkey/skin.aur...l#L92-L107
Let me know if you need anything else