Merge pull request #579 from alebastr/date-fractional-seconds

fix(clock): lower precision of zoned_time to avoid fractional seconds in output
This commit is contained in:
Alex 2020-02-06 21:27:01 +00:00 committed by GitHub
commit b719569243
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -14,7 +14,7 @@ namespace waybar::modules {
struct waybar_time {
std::locale locale;
date::zoned_time<std::chrono::system_clock::duration> ztime;
date::zoned_seconds ztime;
};
class Clock : public ALabel {

View File

@ -37,8 +37,9 @@ auto waybar::modules::Clock::update() -> void {
// Time zone can change. Be sure to pick that.
time_zone_ = date::current_zone();
}
auto now = std::chrono::system_clock::now();
waybar_time wtime = {locale_, date::make_zoned(time_zone_, now)};
auto now = std::chrono::system_clock::now();
waybar_time wtime = {locale_,
date::make_zoned(time_zone_, date::floor<std::chrono::seconds>(now))};
auto text = fmt::format(format_, wtime);
label_.set_markup(text);