waybar/src/modules/clock.cpp

24 lines
764 B
C++
Raw Normal View History

2018-08-08 23:54:58 +02:00
#include "modules/clock.hpp"
2018-08-09 13:30:11 +02:00
waybar::modules::Clock::Clock(Json::Value config)
: ALabel(std::move(config))
2018-08-08 23:54:58 +02:00
{
2018-08-16 14:29:41 +02:00
label_.set_name("clock");
uint32_t interval = config_["interval"] ? config_["inveral"].asUInt() : 60;
2018-08-19 13:39:57 +02:00
thread_.sig_update.connect(sigc::mem_fun(*this, &Clock::update));
2018-08-16 14:29:41 +02:00
thread_ = [this, interval] {
2018-08-08 23:54:58 +02:00
auto now = waybar::chrono::clock::now();
2018-08-19 20:37:33 +02:00
thread_.emit();
2018-08-15 21:00:04 +02:00
auto timeout = std::chrono::floor<std::chrono::seconds>(now
+ std::chrono::seconds(interval));
2018-08-16 14:29:41 +02:00
thread_.sleep_until(timeout);
2018-08-08 23:54:58 +02:00
};
}
2018-08-08 23:54:58 +02:00
2018-08-09 12:05:48 +02:00
auto waybar::modules::Clock::update() -> void
{
2018-08-15 20:53:27 +02:00
auto localtime = fmt::localtime(std::time(nullptr));
2018-08-16 14:29:41 +02:00
auto format = config_["format"] ? config_["format"].asString() : "{:%H:%M}";
label_.set_text(fmt::format(format, localtime));
2018-08-09 12:05:48 +02:00
}