waybar/include/modules/memory.hpp

24 lines
494 B
C++
Raw Normal View History

2018-08-09 01:42:52 +02:00
#pragma once
#include <fmt/format.h>
2018-11-09 16:24:13 +01:00
#include <fstream>
2018-12-26 11:13:36 +01:00
#include "util/sleeper_thread.hpp"
#include "ALabel.hpp"
2018-08-09 01:42:52 +02:00
namespace waybar::modules {
class Memory : public ALabel {
2018-08-16 14:29:41 +02:00
public:
2018-12-18 17:30:54 +01:00
Memory(const std::string&, const Json::Value&);
2018-12-26 11:13:36 +01:00
~Memory() = default;
2018-08-16 14:29:41 +02:00
auto update() -> void;
private:
2018-11-09 22:55:25 +01:00
static inline const std::string data_dir_ = "/proc/meminfo";
2018-11-08 21:09:56 +01:00
unsigned long memtotal_;
unsigned long memfree_;
void parseMeminfo();
2018-08-16 14:29:41 +02:00
waybar::util::SleeperThread thread_;
};
2018-08-09 01:42:52 +02:00
}