Using the Xlib module for python, I have managed to move, resize, and destroy windows by calling configure() and destroy() respectively followed by display.sync().
However, I can't seem to rename existing windows. The following code outputs 'foo':
window.set_wm_name('foo')
window.set_wm_icon_name('foo')
print window.get_wm_name()
which would suggest that the object updates properly. On my screen, though, the window's title doesn't change at all, even after calling display.sync(). Am I using the set_wm_name functions correctly, if they should be used at all for this sort of task?