summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.def.h3
-rw-r--r--slstatus.c2
2 files changed, 0 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h
index 011acc7..ded771a 100644
--- a/config.def.h
+++ b/config.def.h
@@ -8,9 +8,6 @@
#define BATTERY_NOW "energy_now"
#define BATTERY_FULL "energy_full_design"
-/* bar update interval in seconds (smallest value = 1) */
-#define UPDATE_INTERVAL 1
-
/* text to show if no value can be retrieved */
#define UNKNOWN_STR "n/a"
diff --git a/slstatus.c b/slstatus.c
index 2e57fbb..ab461c8 100644
--- a/slstatus.c
+++ b/slstatus.c
@@ -147,7 +147,6 @@ cpu_perc(void)
fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &a[0], &a[1], &a[2], &a[3]);
fclose(fp);
- /* wait a second (for avg values) */
sleep(1);
fp = fopen("/proc/stat","r");
@@ -637,7 +636,6 @@ main(void)
XStoreName(dpy, DefaultRootWindow(dpy), status_string);
XSync(dpy, False);
- sleep(UPDATE_INTERVAL -1);
}
/* NOT REACHED */