How does one set the X11 display in Python-Clutter? I am trying to set it to XSCREENSAVER_WINDOW. I have tried importing clutter.x11 and using set_display(), but this doesn't seem to be the correct command. Does anyone know the right way of doing this?
|
feedback
|
|
While searching around I found this thread, and by looking at the avatar picture, I assume it's your thread ;) I'll re post the code given by LemursDontExist so you have it all in one. Short explanation: to make a program a screensaver in X Windows, the program checks if it is running as a screensaver, that means if it was invoked by the windowing system as such. This is done by checking if the environment variable In that case, the program needs to go full screen and react to certain events. This is exactly what the code below does. Setting this variable is done through the xscreensaver application, you don't do it yourself. The bit you're missing is the
For a short overview on how to use clutter with python (it has changed a lot), see this example | |||
|
feedback
|
export DISPLAY=':0.0'oros.environ['DISPLAY'] = ':0.0'? – Cristian Ciupitu Jan 4 '11 at 21:41