i've receantly made an animation in blender, and i would like to know how do i add it to the desktop, in a way, that you can see the background of the screen, and you choose what size is the animation is gona take.

something like windows 7 gadgets, for saying it in a way. By the way my OS is ubuntu. i would like to know if it's possible to make an aplicattion with python, that do what i explained.

also if there is another program or language that makes it posible, its ok too.

link|improve this question
You can write desktop applications in Python, but it's a good idea to look into the specific GUI libraries that are suited for you - Tk, Qt, and GTK are good places to start looking. – Makoto Feb 9 at 2:09
Just to be clear - you have a blender animation, you want to put it on your desktop, and you want it to be semitransparent. You want to be able to configure the size of the animation, and you would prefer that this can be done in python, but another language is OK. Is that what you're saying? It's somewhat difficult to tell. – pyhacker112358 Feb 9 at 2:27
yeah, you said it perfectly. – Cool_Water Feb 9 at 5:05
feedback

closed as not a real question by Ken White, Niklas B., casperOne Feb 9 at 13:07

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

I presume what you're trying to do is write an arbitrary program that updates the X root window with the content you want, in a manner similar to conky, xscreensaver, or mplayer's -wid option.

The Python-xlib class Window can retrieve the root window for you -- I hope you can then use it to draw your content as you see fit. (Note that this might still be more difficult than it should be even with Python-xlib.)

link|improve this answer
feedback

Note that the ability to do custom displays on the desktop on Linux is very much a function of the GUI environment. Ubuntu defaults to GNOME, but you can still choose other GUIs, like KDE, which offers Plasma widgets.

Blender would be useful for doing the initial modelling, but not for generating the final display. You’d probably want to export your Blender model to .obj or some other 3D interchange format for use in your widget display code.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.