diff options
author | Aaron Marcher <info@nulltime.net> | 2016-09-09 19:12:08 +0200 |
---|---|---|
committer | Aaron Marcher (drkhsh) <info@nulltime.net> | 2016-09-09 19:12:08 +0200 |
commit | 7710c9ed8514767af3d1fdc86d0e64d7621fc5d9 (patch) | |
tree | 95415bd6dff25a349b7baa56f3e57595ba958da0 | |
parent | 6518f41b1f96b2bd684c2e37b5ea0002074cc49b (diff) | |
download | slstatus-7710c9ed8514767af3d1fdc86d0e64d7621fc5d9.tar.gz |
removed that status_reset (we will do that with signals) and loop.sh (we wont need it)
-rw-r--r-- | TODO.md | 1 | ||||
-rwxr-xr-x | loop.sh | 7 | ||||
-rw-r--r-- | status_reset.c | 10 |
3 files changed, 0 insertions, 18 deletions
@@ -2,4 +2,3 @@ Todo ==== - slstatus icon (in that cool dwm icon style) -- include status_reset in the makefile diff --git a/loop.sh b/loop.sh deleted file mode 100755 index be231cf..0000000 --- a/loop.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -while true -do - slstatus - status_reset -done diff --git a/status_reset.c b/status_reset.c deleted file mode 100644 index eebaac6..0000000 --- a/status_reset.c +++ /dev/null @@ -1,10 +0,0 @@ -#include <X11/Xlib.h> - -int -main(void) -{ - Display *dpy = XOpenDisplay(NULL); - XStoreName(dpy, DefaultRootWindow(dpy), NULL); - XCloseDisplay(dpy); - return (0); -} |