summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Marcher <info@nulltime.net>2016-09-09 19:12:08 +0200
committerAaron Marcher (drkhsh) <info@nulltime.net>2016-09-09 19:12:08 +0200
commit7710c9ed8514767af3d1fdc86d0e64d7621fc5d9 (patch)
tree95415bd6dff25a349b7baa56f3e57595ba958da0
parent6518f41b1f96b2bd684c2e37b5ea0002074cc49b (diff)
downloadslstatus-7710c9ed8514767af3d1fdc86d0e64d7621fc5d9.tar.gz
removed that status_reset (we will do that with signals) and loop.sh (we wont need it)
-rw-r--r--TODO.md1
-rwxr-xr-xloop.sh7
-rw-r--r--status_reset.c10
3 files changed, 0 insertions, 18 deletions
diff --git a/TODO.md b/TODO.md
index f4b54f7..ea038b2 100644
--- a/TODO.md
+++ b/TODO.md
@@ -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);
-}