M config.h => config.h +3 -0
@@ 4,6 4,9 @@
#include "clock.h"
#include "volume.h"
+/* delay between refreshes in seconds */
+#define DELAY 10
+
#define SEP " | "
static Block blocks[] = {
M cstatus.c => cstatus.c +1 -1
@@ 71,7 71,7 @@ main(int argc, char **argv) {
if (!refresh()) {
return EXIT_FAILURE;
}
- sleep(3);
+ sleep(DELAY);
}
XCloseDisplay(dpy);