2018-08-08 23:42:52 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2018-11-09 15:24:13 +00:00
|
|
|
#include <fstream>
|
2020-04-13 16:02:50 +00:00
|
|
|
#include <unordered_map>
|
2018-08-18 09:43:48 +00:00
|
|
|
#include "ALabel.hpp"
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2018-08-08 23:42:52 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-08-18 09:43:48 +00:00
|
|
|
class Memory : public ALabel {
|
2019-04-18 15:52:00 +00:00
|
|
|
public:
|
|
|
|
Memory(const std::string&, const Json::Value&);
|
|
|
|
~Memory() = default;
|
|
|
|
auto update() -> void;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void parseMeminfo();
|
2019-05-29 15:53:22 +00:00
|
|
|
|
2020-03-20 21:37:22 +00:00
|
|
|
std::unordered_map<std::string, unsigned long> meminfo_;
|
2019-05-29 15:53:22 +00:00
|
|
|
|
|
|
|
util::SleeperThread thread_;
|
2018-08-16 12:29:41 +00:00
|
|
|
};
|
2018-08-08 23:42:52 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
} // namespace waybar::modules
|