Waybar/include/modules/cpu.hpp

19 lines
294 B
C++

#pragma once
#include <fmt/format.h>
#include <sys/sysinfo.h>
#include "util/chrono.hpp"
#include "ALabel.hpp"
namespace waybar::modules {
class Cpu : public ALabel {
public:
Cpu(const Json::Value&);
auto update() -> void;
private:
waybar::util::SleeperThread thread_;
};
}