fix: clock interval

This commit is contained in:
Alexis 2018-12-04 09:38:08 +01:00
parent 2ec34e4adb
commit 7befd27059

View File

@ -10,7 +10,7 @@ waybar::modules::Clock::Clock(const Json::Value& config)
auto timeout = std::chrono::floor<std::chrono::seconds>(now + interval_); auto timeout = std::chrono::floor<std::chrono::seconds>(now + interval_);
auto time_s = std::chrono::time_point_cast<std::chrono::seconds>(timeout); auto time_s = std::chrono::time_point_cast<std::chrono::seconds>(timeout);
auto sub_m = auto sub_m =
std::chrono::duration_cast<std::chrono::seconds>(time_s.time_since_epoch()).count() % 60; std::chrono::duration_cast<std::chrono::seconds>(time_s.time_since_epoch()).count() % interval_.count();
thread_.sleep_until(timeout - std::chrono::seconds(sub_m - 1)); thread_.sleep_until(timeout - std::chrono::seconds(sub_m - 1));
}; };
} }