added a tool for resetting the status bar && worked around some issues && removed the makefile (we need a better one)
This commit is contained in:
10
status_reset.c
Normal file
10
status_reset.c
Normal file
@ -0,0 +1,10 @@
|
||||
#include <X11/Xlib.h>
|
||||
|
||||
int
|
||||
main(void)
|
||||
{
|
||||
Display *dpy = XOpenDisplay(NULL);
|
||||
XStoreName(dpy, DefaultRootWindow(dpy), NULL);
|
||||
XCloseDisplay(dpy);
|
||||
return (0);
|
||||
}
|
Reference in New Issue
Block a user