Wallpaper Engine

Wallpaper Engine

861 ratings
Forest 4K Clock and weather wallpaper
   
Award
Favorite
Favorited
Unfavorite
Type: Web
Age Rating: Everyone
Genre: Landscape
Resolution: Dynamic resolution
Category: Wallpaper
File Size
Posted
6.363 MB
Mar 19, 2018 @ 1:40pm
1 Change Note ( view )

Subscribe to download
Forest 4K Clock and weather wallpaper

Description
Forest 4K Clock and weather wallpaper.
Weather requires an API key from OpenWeatherMap to work.

How to get API key?
Register on openweathermap.org.
Go to account > My API Keys > copy your key.
Search your city on openweathermap and paste name of your city and country to wallpapers settings (for example Country "US", City "Los Angeles").
Paste your API Key in the field "API key".
Press OK and reboot Wallpaper Engine.

If you want to delete particles ---> check this preset by MXLXTXFF
39 Comments
Lawgics Apr 21 @ 7:28pm 
If anyone else is annoyed by the two decimal points in the temperature, here's how you can round to the nearest integer:

Open Wallpaper Engine, navigate to the wallpaper, right click > Open in Explorer > assets > js > custom.js (open with Notepad).

Ctrl-F "weather-text" and you'll see 3 places that need to be rounded in this line; "temp", "low", and "high". You need to wrap those with "Math.round(x)" where you fill in the x with temp, low, or high.

E.g. Math.round(temp) and Math.round(low) and Math.round(high)

Here's the full line you can copy/paste over the original line of javascript code:
$('#weather-text').html(main + ", " + Math.round(temp) + "°F" + (hilow ? " (↓ " + Math.round(low) + "°F, ↑ " + Math.round(high) + "°F)" : ""));
Kamui Dec 29, 2024 @ 3:39am 
Can you make a field to use coordinates instead of city and country name? I think it will be more accurate than names.
Nuh Uh Aug 17, 2024 @ 1:20pm 
It doesn't show weather but the particles are pretty smooth
81548161 Mar 29, 2024 @ 2:27am 
Is it possible to delete Clock and weather ,leave only the wallpaper?
Kaafir Mar 6, 2024 @ 1:29pm 
Weather isnt working for me. Nothing is coming up.
Dash Jan 15, 2024 @ 3:20pm 
weather just isn't showing up
Kommult Aug 15, 2023 @ 9:01am 
Has problems dealing with multiple cities with the same name and country - it will select the first one in the list, which is all fine until you happen to live in a city that just so happens to not be the first in the list. Otherwise works fine.
KrilMun Dec 24, 2022 @ 1:49pm 
Weather not working for me. I live in a city whose name appears multiple times in OpenWeatherMap. Like, literally the same city and country appear over 3 times. Doesn't the wallpaper have a disambiguation implementation?
Ardi Dec 18, 2022 @ 4:59am 
could u make one without the clock please
woof Jun 8, 2022 @ 11:12pm 
For those of you that want to switch the temperature from metric to imperial (Celsius to Fahrenheit): Navigate to the Assets -> js -> custom.js and open it in any editor. I simply used Notepad. Ctrl + F "metric" and change it to "imperial." While you are here you should see a line right above this that says

$('#weather-text').html(main + ", " + temp + "°C" + (hilow ? " (↓ " + low + "°C, ↑ " + high + "°C)" : ""));.

Make sure to change all the 'C's to 'F' in this line so that the temperature is displayed correctly. After this just save and restart Wallpaper Engine and it should now be in Fahrenheit!