pygame is
Python
Simple DirectMedia Layer
 
 
pygame.org is
Site Swing
Wiki

SettingWindowPosition

      
Search:  
 
 
You can set the position of the window by using SDL environment variables before you initialise pygame. Environment variables can be set with the os.environ dict in python.
x = 100
y = 0
import os
os.environ['SDL_VIDEO_WINDOW_POS'] = "%d,%d" % (x,y)
 
import pygame
pygame.init()
screen = pygame.display.set_mode((100,100))
 
# wait for a while to show the window.
import time
time.sleep(2)
A full list of SDL environment variables can be found here: http://www.libsdl.org/cgi/docwiki.cgi/Environment_20variables
spotlight

 
our projects
pygame.org welcomes all python game, art, music, sound, video and multimedia projects. If they use pygame or not.
 
recent releases
May 23, 2013

May 22, 2013


May 21, 2013

May 19, 2013

May 18, 2013


May 17, 2013

May 16, 2013

May 15, 2013


May 11, 2013

... more!
 
for pygame related questions, comments, and suggestions, please see help (lists, irc)