I've created a Python script that generates random mazes with animated runners, and I've successfully set it as a screensaver. However, I'm curious if there's any way to set this up as my desktop wallpaper without converting it into a GIF, since each maze is generated randomly. Any thoughts or advice?
2 Answers
Generally, it's a no-go for setting scripts as wallpapers. You'd need to delve into some low-level operating system APIs, which can be a lot more complicated than what your current app does. Plus, distributing it would be a whole other headache.
If you're on Windows, definitely check out the win32 API and related libraries. There's a chance the functionality you need is buried in there. Other than that, you might want to consider using a different programming language that can interact better with Windows.
Ok I'll check it out, thank you!

:(. Ok thx for your help. Have a nice day 🙂