Waybar/include/modules/memory.hpp

25 lines
574 B
C++
Raw Normal View History

2018-08-08 23:42:52 +00:00
#pragma once
#include <fmt/format.h>
2018-11-09 15:24:13 +00:00
#include <fstream>
#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 {
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:
static inline const std::string data_dir_ = "/proc/meminfo";
unsigned long memtotal_;
unsigned long memfree_;
void parseMeminfo();
waybar::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