#pragma once #include #include #include "util/chrono.hpp" #include "ALabel.hpp" namespace waybar::modules { class Memory : public ALabel { public: Memory(const Json::Value&); auto update() -> void; private: waybar::util::SleeperThread thread_; }; }