Can I Use a Python Script as My Desktop Wallpaper?

0
8
Asked By CrazyCactus42 On

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

Answered By TechieTommy77 On

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.

CrazyCactus42 -

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

Answered By CodeWizard2023 On

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.

CrazyCactus42 -

Ok I'll check it out, thank you!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.