diff options
author | Aaron Marcher <info@nulltime.net> | 2016-09-09 19:07:25 +0200 |
---|---|---|
committer | Aaron Marcher (drkhsh) <info@nulltime.net> | 2016-09-09 19:07:25 +0200 |
commit | 6518f41b1f96b2bd684c2e37b5ea0002074cc49b (patch) | |
tree | 799f8f502bbfa4c907c0022b63298f58cfc9ae40 /status_reset.c | |
parent | 5c86bbd67f25815aa9c6c309697df7aea2d80330 (diff) | |
parent | 9b2dc253485ef3a0ac34a5e781bc2c856bec463d (diff) |
Merge branch 'R41z-master'
Diffstat (limited to 'status_reset.c')
-rw-r--r-- | status_reset.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/status_reset.c b/status_reset.c new file mode 100644 index 0000000..eebaac6 --- /dev/null +++ b/status_reset.c @@ -0,0 +1,10 @@ +#include <X11/Xlib.h> + +int +main(void) +{ + Display *dpy = XOpenDisplay(NULL); + XStoreName(dpy, DefaultRootWindow(dpy), NULL); + XCloseDisplay(dpy); + return (0); +} |