mirror of
https://github.com/rad4day/Waybar.git
synced 2025-09-18 00:12:32 +02:00
Handle screens disconnection (#29)
This commit is contained in:
@@ -5,9 +5,10 @@ waybar::modules::Clock::Clock(Json::Value config)
|
||||
{
|
||||
label_.set_name("clock");
|
||||
uint32_t interval = config_["interval"] ? config_["inveral"].asUInt() : 60;
|
||||
thread_.sig_update.connect(sigc::mem_fun(*this, &Clock::update));
|
||||
thread_ = [this, interval] {
|
||||
auto now = waybar::chrono::clock::now();
|
||||
Glib::signal_idle().connect_once(sigc::mem_fun(*this, &Clock::update));
|
||||
thread_.sig_update.emit();
|
||||
auto timeout = std::chrono::floor<std::chrono::seconds>(now
|
||||
+ std::chrono::seconds(interval));
|
||||
thread_.sleep_until(timeout);
|
||||
|
Reference in New Issue
Block a user