I have download them all and apply them right away:) just two questions, is it possible to remove the black border on the right side (where the wheel is in) en i want to remove the tome names and playtime in the bottom.
Yeah,
just delete or put "//" (without commas) before those lines in layout.nut file.
// Title
local title = fe.add_text("[Title]", flw*0, flh*0.89, flw*0.4, flh*0.1);
title.align = Align.Left;
title.charsize = 40;
title.set_rgb(255, 255, 255);
// Playtime
local playtime = fe.add_text("Playtime : [PlayedTime]", flw*0.31, flh*0.89, flw*0.4, flh*0.1);
playtime.align = Align.Right;
playtime.charsize = 40;
playtime.set_rgb(255, 255, 255);
local conveyor_bg = fe.add_text("", flw*0.73, flh*0, flw*0.28, flh*1);
conveyor_bg.set_bg_rgb(0,0,0);
conveyor_bg.bg_alpha = 220;