Waybar/include/modules/cpu.hpp

24 lines
507 B
C++
Raw Normal View History

2018-08-08 23:54:33 +00:00
#pragma once
#include <fmt/format.h>
#include <fstream>
#include <vector>
#include <numeric>
2018-08-08 23:54:33 +00:00
#include "util/chrono.hpp"
#include "ALabel.hpp"
2018-08-08 23:54:33 +00:00
namespace waybar::modules {
class Cpu : public ALabel {
2018-08-16 12:29:41 +00:00
public:
2018-08-20 12:50:45 +00:00
Cpu(const Json::Value&);
2018-08-16 12:29:41 +00:00
auto update() -> void;
private:
static inline const std::string data_dir_ = "/proc/stat";
std::vector< std::tuple<size_t, size_t> > parseCpuinfo();
std::vector< std::tuple<size_t, size_t> > prevTimes_;
2018-08-16 12:29:41 +00:00
waybar::util::SleeperThread thread_;
};
2018-08-08 23:54:33 +00:00
}