How to set mouse cursor position in C on linux?
how can I set the mouse cursor position in an X window using a C program under Linux? thanks :) (like setcursorpos() in WIN)
EDIT: I've tried this code, but doesn't work:
#include
main(){
move(100, 100);
refresh();
}