summaryrefslogtreecommitdiff
path: root/i3status.c
diff options
context:
space:
mode:
Diffstat (limited to 'i3status.c')
-rw-r--r--i3status.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/i3status.c b/i3status.c
index 46d557c..000584a 100644
--- a/i3status.c
+++ b/i3status.c
@@ -692,7 +692,12 @@ int main(int argc, char *argv[]) {
* We also align to 60 seconds modulo interval such
* that we start with :00 on every new minute. */
struct timespec ts;
+#if defined(__APPLE__)
+ gettimeofday(&tv, NULL);
+ ts.tv_sec = tv.tv_sec;
+#else
clock_gettime(CLOCK_REALTIME, &ts);
+#endif
ts.tv_sec += interval - (ts.tv_sec % interval);
ts.tv_nsec = 0;