Making the following change allows me to run this app in Kubuntu 8.10 and on my n800. Otherwise it changes the screen resolution of my KDE nvidia graphics desktop. Painful. Code: try: window = pygame.display.set_mode((0,0)) except: window = pygame.display.set_mode((800, 480)) Cool stuff. Thanks.
try: window = pygame.display.set_mode((0,0)) except: window = pygame.display.set_mode((800, 480))