Wallpaper Engine

Wallpaper Engine

Anime Time/Calendar/Audio [ENGLISH]
Pitou Aug 22, 2022 @ 6:03am
Phone text fix
I spent a few hours trying to find a fix for this and this worked.

For phone text fix:
- Right-click the wallpaper in the wallpaper engine and click "Open in Explorer"
- Right-click on bb.html and open it with any text editor
- Ctrl+F and paste this "phoneText.sort"
- Find a line with this text "phoneText = phoneText.sort((a, b) => a.time < b.time)"
- Replace that line with this "phoneText = phoneText.sort(function(a, b) {return b.time-a.time;})"
- Save the file

That should fix the phone text problem. I also manage to remove the second from the clock, make the calendar start with Monday, and lower PC and phone brightness. This is what my wallpaper looks like now https://imgur.com/a/yo2Aacv

Let me know if you want to see any more changes. I will try my best with my little coding knowledge to make it work.
Last edited by Pitou; Aug 22, 2022 @ 7:16am
< >
Showing 1-5 of 5 comments
wubbles Sep 1, 2022 @ 4:30am 
yeah a couple of things, how did you change the brightness of the phone and change the image of the illustrated computer
WEEBSINGH Sep 26, 2022 @ 12:28pm 
Yup can't change the display background
Pitou Sep 26, 2022 @ 10:32pm 
Originally posted by totsuげき:
yeah a couple of things, how did you change the brightness of the phone and change the image of the illustrated computer
in bb.html there are a bunch of code. search for "screenlight" and find this statement

if (lightColor.a > 0) {
ctx.globalAlpha = lightColor.a / 1.5;
ctx.drawImage(screenLight, 0, 0);
ctx.globalAlpha = 1;
}

change the "lightColor.a / x" to higher number and it will lower the brightness.
A few lines about those code, u can see these

ctx.globalAlpha = lightColor.a / 1.5;
ctx.drawImage(phoneLight, 860, 437);
ctx.globalAlpha = 1;

do the same as u did for screenLight
Last edited by Pitou; Sep 26, 2022 @ 10:33pm
Pitou Sep 26, 2022 @ 10:34pm 
Originally posted by weebsingh:
Yup can't change the display background
there is literally an option for it in the wallpaper setting
https://imgur.com/a/16UY3kV
Last edited by Pitou; Sep 26, 2022 @ 10:36pm
Hade Nov 8, 2023 @ 10:29pm 
Another fix for those who are too lazy to code is to just put the time in backward since it takes the first time that it passes, so something like this would work:
19:Night, 18:Dusk, 13:Afternoon, 12:Noon,7:Late Morning, 6:Dawn, 1:Early Morning, 0:Midnight
< >
Showing 1-5 of 5 comments
Per page: 1530 50