sukru cinar wrote: > > v->window= XCreateSimpleWindow(xdpy, parent,x,y ,w,h, 3, 0, None); The last parameter is the background pixel value - there's no None for that. Use XSetWindowBackgroundPixmap(dpy, w, None) to remove the background. Ciao, ET.