Skip to content

Instantly share code, notes, and snippets.

@marmarek
Created February 10, 2017 22:39
Show Gist options
  • Save marmarek/4483f96d1154924506c9fb480cd009e8 to your computer and use it in GitHub Desktop.
Save marmarek/4483f96d1154924506c9fb480cd009e8 to your computer and use it in GitHub Desktop.
#include <X11/X.h>
#include <X11/Xutil.h>
#include <time.h>
int main() {
Display *d = XOpenDisplay(NULL);
int s = DefaultScreen(d);
Window root = DefaultRootWindow(d);
Window w = XCreateSimpleWindow(d, root, 100, 100, 100, 100, 0, BlackPixel(d, s), WhitePixel(d, s));
XMapWindow(d, w);
XSync(d, False);
sleep(10);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment