all repos — slstatus @ 720328cef9a9d81d2bd876bdf89103782b9cab91

my build of slstatus (tools.suckless.org/slstatus/)

status_reset.c

1 2 3 4 5 6 7 8 9 10
#include <X11/Xlib.h>

int
main(void)
{
	Display *dpy = XOpenDisplay(NULL);
	XStoreName(dpy, DefaultRootWindow(dpy), NULL);
	XCloseDisplay(dpy);
	return (0);
}