Xinqi Bao's Git

used ccat() from concat.h for string concatenation
[slstatus.git] / status_reset.c
1 #include <X11/Xlib.h>
2
3 int
4 main(void)
5 {
6 Display *dpy = XOpenDisplay(NULL);
7 XStoreName(dpy, DefaultRootWindow(dpy), NULL);
8 XCloseDisplay(dpy);
9 return (0);
10 }