FlowofSoul
FlowofSoul

Reputation: 510

Transparent Desktop Widget in Python

I would like to write a desktop widget that has a transparent window and background, like Rainmeter, using Python. Also I should be able to lock the window in place, and make it so that it can not be above any other windows (ex. It can't be layered over Firefox). Is there a way to do this?

Upvotes: 2

Views: 1823

Answers (2)

Ken
Ken

Reputation: 873

I think this depends mostly on your OS and toolkit, and not so much Python. Any GUI library that supports opacity and has Python bindings, e.g., GTK+, will do the job.

Upvotes: 1

Ant
Ant

Reputation: 5414

if you're just looking for a graphic library, you can take a look at wx, that has a vaery powerful tool in make a windows transparent (this is funny and show you how powerful it is)

Upvotes: 0

Related Questions