#include #include #include #include #include int main(int argc, char **argv) { Display *dpy; Window root; XEvent event; int dummy, screen, randr_event_base; dpy = XOpenDisplay(NULL); if (dpy == NULL) { fputs("ERROR: Could not open display!\n", stderr); return EXIT_FAILURE; } /* Is the randr extension available? */ if (!XRRQueryExtension(dpy, &randr_event_base, &dummy)) { fputs("ERROR: RandR extension unavailable on current screen!\n", stderr); return EXIT_FAILURE; } /* Get root window */ screen = DefaultScreen(dpy) ; root = RootWindow(dpy, screen) ; /* Notify on configuration change */ XRRSelectInput(dpy, root, RRScreenChangeNotifyMask); while (true) { XNextEvent(dpy, &event); if (event.type == randr_event_base + RRScreenChangeNotify) { return EXIT_SUCCESS; } } /* should never happen */ return EXIT_FAILURE; }