2
votes
4answers
2k views
How do you hide the mouse pointer under Linux/X11?
How do I hide the mouse pointer under X11? I would like to use the built in libraries in order to do this and not something like SDL (SDL_ShowCursor(0)) or glut (glutSetCursor(GLUT_CURSOR_NONE)). …
3
votes
How do you hide the mouse pointer under Linux/X11?
I ended up using XDefineCursor like ephemient mentioned. The control application changed the default root window cursor and the other applications (which are under my control) inherited it.
…
