2018-08-09 01:42:52 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-08-09 13:30:11 +02:00
|
|
|
#include <json/json.h>
|
2018-08-09 01:42:52 +02:00
|
|
|
#include <gtkmm.h>
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include <sys/sysinfo.h>
|
|
|
|
#include "util/chrono.hpp"
|
2018-08-09 12:05:48 +02:00
|
|
|
#include "IModule.hpp"
|
2018-08-09 01:42:52 +02:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-08-09 12:05:48 +02:00
|
|
|
class Memory : public IModule {
|
2018-08-09 01:42:52 +02:00
|
|
|
public:
|
2018-08-09 13:30:11 +02:00
|
|
|
Memory(Json::Value config);
|
2018-08-09 12:05:48 +02:00
|
|
|
auto update() -> void;
|
2018-08-09 01:42:52 +02:00
|
|
|
operator Gtk::Widget &();
|
|
|
|
private:
|
|
|
|
Gtk::Label _label;
|
|
|
|
waybar::util::SleeperThread _thread;
|
2018-08-09 13:30:11 +02:00
|
|
|
Json::Value _config;
|
2018-08-09 01:42:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|