Created
February 10, 2017 22:39
-
-
Save marmarek/4483f96d1154924506c9fb480cd009e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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