2018-08-09 01:54:33 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2018-11-11 03:11:32 +01:00
|
|
|
#include <fstream>
|
|
|
|
#include <vector>
|
|
|
|
#include <numeric>
|
2018-08-09 01:54:33 +02:00
|
|
|
#include "util/chrono.hpp"
|
2018-08-18 11:43:48 +02:00
|
|
|
#include "ALabel.hpp"
|
2018-08-09 01:54:33 +02:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-08-18 11:43:48 +02:00
|
|
|
class Cpu : public ALabel {
|
2018-08-16 14:29:41 +02:00
|
|
|
public:
|
2018-08-20 14:50:45 +02:00
|
|
|
Cpu(const Json::Value&);
|
2018-08-16 14:29:41 +02:00
|
|
|
auto update() -> void;
|
|
|
|
private:
|
2018-11-11 03:11:32 +01:00
|
|
|
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 14:29:41 +02:00
|
|
|
waybar::util::SleeperThread thread_;
|
|
|
|
};
|
2018-08-09 01:54:33 +02:00
|
|
|
|
|
|
|
}
|