summaryrefslogtreecommitdiffstats
path: root/move/xwait.c
blob: 07a693514d0b78d8f1c9f0d76390aa59d836ce15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdlib.h>
#include <X11/Xlib.h>

int main(int argc, char **argv) {
  int permanent = argc > 1 && !strcmp(argv[1], "-permanent");
  Display *display = XOpenDisplay(NULL);

  if (display) {
    XEvent event;
    
    XSelectInput(display, DefaultRootWindow(display), SubstructureNotifyMask);
    do {
      XNextEvent(display, &event);
    } while (event.type != CreateNotify || permanent);
    XCloseDisplay(display);
  }

  exit(display == NULL);
}