waybar/include/modules/memory.hpp

19 lines
293 B
C++
Raw Normal View History

2018-08-09 01:42:52 +02:00
#pragma once
#include <fmt/format.h>
#include <sys/sysinfo.h>
#include "util/chrono.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:
Memory(Json::Value);
auto update() -> void;
private:
waybar::util::SleeperThread thread_;
};
2018-08-09 01:42:52 +02:00
}