feat(config): interval for cpu and memory modules
parent
e749f00aa7
commit
b8917e9973
|
@ -7,7 +7,8 @@ waybar::modules::Cpu::Cpu(Json::Value config)
|
|||
_label.get_style_context()->add_class("cpu");
|
||||
_thread = [this] {
|
||||
update();
|
||||
_thread.sleep_for(chrono::seconds(10));
|
||||
int interval = _config["interval"] ? _config["inveral"].asInt() : 10;
|
||||
_thread.sleep_for(chrono::seconds(interval));
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -7,7 +7,8 @@ waybar::modules::Memory::Memory(Json::Value config)
|
|||
_label.get_style_context()->add_class("memory");
|
||||
_thread = [this] {
|
||||
update();
|
||||
_thread.sleep_for(chrono::seconds(30));
|
||||
int interval = _config["interval"] ? _config["inveral"].asInt() : 30;
|
||||
_thread.sleep_for(chrono::seconds(interval));
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue