Waybar/src/modules/cpu.cpp

28 lines
652 B
C++
Raw Normal View History

2018-08-08 23:54:33 +00:00
#include "modules/cpu.hpp"
#include <iostream>
2018-08-09 11:30:11 +00:00
waybar::modules::Cpu::Cpu(Json::Value config)
: _config(config)
2018-08-08 23:54:33 +00:00
{
2018-08-09 08:50:16 +00:00
_label.get_style_context()->add_class("cpu");
2018-08-08 23:54:33 +00:00
_thread = [this] {
2018-08-09 10:05:48 +00:00
update();
2018-08-09 08:50:16 +00:00
_thread.sleep_for(chrono::seconds(10));
2018-08-08 23:54:33 +00:00
};
};
2018-08-09 10:05:48 +00:00
auto waybar::modules::Cpu::update() -> void
{
struct sysinfo info;
if (!sysinfo(&info)) {
float f_load = 1.f / (1 << SI_LOAD_SHIFT);
2018-08-09 11:30:11 +00:00
int load = info.loads[0] * f_load * 100 / get_nprocs();
auto format = _config["format"] ? _config["format"].asString() : "{}%";
_label.set_text(fmt::format(format, load));
2018-08-09 10:05:48 +00:00
}
}
2018-08-08 23:54:33 +00:00
waybar::modules::Cpu::operator Gtk::Widget &() {
return _label;
}