From 9fa858daeafb5398cdf19af9483b2854fe6e9772 Mon Sep 17 00:00:00 2001 From: "Ali H. Fardan" Date: Mon, 5 Sep 2016 01:13:48 +0300 Subject: added a tool for resetting the status bar && worked around some issues && removed the makefile (we need a better one) --- status_reset.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 status_reset.c (limited to 'status_reset.c') 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 + +int +main(void) +{ + Display *dpy = XOpenDisplay(NULL); + XStoreName(dpy, DefaultRootWindow(dpy), NULL); + XCloseDisplay(dpy); + return (0); +} -- cgit v1.2.3