My slstatus configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

status_reset.c 160 B

12345678910
  1. #include <X11/Xlib.h>
  2. int
  3. main(void)
  4. {
  5. Display *dpy = XOpenDisplay(NULL);
  6. XStoreName(dpy, DefaultRootWindow(dpy), NULL);
  7. XCloseDisplay(dpy);
  8. return (0);
  9. }