mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
This commit is contained in:
parent
641857f2d1
commit
199f600c63
|
|
@ -79,6 +79,8 @@
|
|||
- Set via image/video (Fill, Fit, Stretch, Tile, Center)
|
||||
- Picture Slideshow
|
||||
- [Astronomy Picture of the Day](https://api.nasa.gov/#apod)
|
||||
- [Art Institute of Chicago](https://api.artic.edu/docs/)
|
||||
- [Lorem Picsum](https://picsum.photos/)
|
||||
- AI Generated Wallpapers [Stable Diffusion](https://stability.ai/stable-diffusion)
|
||||
- Custom screen saver file support
|
||||
- [3D FlowerBox](https://github.com/kevin-shannon/3D-FlowerBox)
|
||||
|
|
|
|||
|
|
@ -339,7 +339,10 @@ const useWallpaper = (
|
|||
wallpaperUrl = newWallpaper.wallpaperUrl || "";
|
||||
fallbackBackground = newWallpaper.fallbackBackground || "";
|
||||
newWallpaperFit = newWallpaper.newWallpaperFit || newWallpaperFit;
|
||||
setTimeout(loadFileWallpaper, newWallpaper.updateTimeout);
|
||||
wallpaperTimerRef.current = setTimeout(
|
||||
loadFileWallpaper,
|
||||
newWallpaper.updateTimeout
|
||||
);
|
||||
}
|
||||
} else if (await exists(wallpaperImage)) {
|
||||
resetWallpaper();
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user