We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf3eef8 commit bffcb54Copy full SHA for bffcb54
2 files changed
assets/gurapp/intl/airy/img.jpg
343 KB
assets/gurapp/intl/airy/index.js
@@ -354,6 +354,21 @@ function updatePersistentClock() {
354
355
// Initial update
356
updatePersistentClock();
357
+
358
+ function applySysWallpaper() {
359
+ document.body.style.backgroundImage = `url('/assets/gurapp/intl/airy/img.jpg') !important`;
360
+ document.body.style.backgroundSize = 'cover';
361
+ document.body.style.backgroundPosition = 'center';
362
363
+ if (recentWallpapers.length === 0) {
364
+ recentWallpapers.push({
365
+ url: WALLPAPER_URL,
366
+ clockStyles: {}
367
+ });
368
+ }
369
370
371
+ applySysWallpaper();
372
});
373
374
// Function to check if it's daytime (between 6:00 and 18:00)
0 commit comments