This doesn't work, import pygame pygame.display.init() pygame.display.set_mode((400,100)) pygame.display.set_caption('TTM') #!!! raw_input() pygame sets WM_NAME(UTF8_STRING) = "TTM" but openbox assumes all WM_NAME are iso-8859-1. relevant sections in the icccm are http://tronche.com/gui/x/icccm/sec-4.html#s-4.1.2.1 http://tronche.com/gui/x/icccm/sec-2.html#s-2.7.1
apparently pygame now sets WM_NAME as a STRING like everyone else...
modified tests/title.c to allow setting of this combo
not a nice solution, but the best i can do.
This doesn't work, import pygame pygame.display.init() pygame.display.set_mode((400,100)) pygame.display.set_caption('TTM') #!!! raw_input() pygame sets WM_NAME(UTF8_STRING) = "TTM" but openbox assumes all WM_NAME are iso-8859-1. relevant sections in the icccm are http://tronche.com/gui/x/icccm/sec-4.html#s-4.1.2.1 http://tronche.com/gui/x/icccm/sec-2.html#s-2.7.1