2018-08-08 23:42:52 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2018-11-09 15:24:13 +00:00
|
|
|
#include <fstream>
|
2018-08-08 23:42:52 +00:00
|
|
|
#include "util/chrono.hpp"
|
2018-08-18 09:43:48 +00:00
|
|
|
#include "ALabel.hpp"
|
2018-08-08 23:42:52 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-08-18 09:43:48 +00:00
|
|
|
class Memory : public ALabel {
|
2018-08-16 12:29:41 +00:00
|
|
|
public:
|
2018-08-20 12:50:45 +00:00
|
|
|
Memory(const Json::Value&);
|
2018-08-16 12:29:41 +00:00
|
|
|
auto update() -> void;
|
|
|
|
private:
|
2018-11-09 21:55:25 +00:00
|
|
|
static inline const std::string data_dir_ = "/proc/meminfo";
|
2018-11-08 20:09:56 +00:00
|
|
|
unsigned long memtotal_;
|
|
|
|
unsigned long memfree_;
|
|
|
|
void parseMeminfo();
|
2018-08-16 12:29:41 +00:00
|
|
|
waybar::util::SleeperThread thread_;
|
|
|
|
};
|
2018-08-08 23:42:52 +00:00
|
|
|
|
|
|
|
}
|