polybar/include/modules/memory.hpp

36 lines
798 B
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
#include <istream>
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
#include "config.hpp"
2016-05-19 14:41:06 +00:00
#include "drawtypes/label.hpp"
2016-06-15 03:32:35 +00:00
#include "drawtypes/progressbar.hpp"
#include "modules/meta.hpp"
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
LEMONBUDDY_NS
namespace modules {
enum class memtype { NONE = 0, TOTAL, USED, FREE, SHARED, BUFFERS, CACHE, AVAILABLE };
class memory_module : public timer_module<memory_module> {
public:
using timer_module::timer_module;
2016-11-02 19:22:45 +00:00
void setup();
bool update();
bool build(builder* builder, string tag) const;
2016-06-15 03:32:35 +00:00
private:
static constexpr auto TAG_LABEL = "<label>";
static constexpr auto TAG_BAR_USED = "<bar-used>";
static constexpr auto TAG_BAR_FREE = "<bar-free>";
label_t m_label;
progressbar_t m_bar_free;
2016-06-15 03:32:35 +00:00
map<memtype, progressbar_t> m_bars;
map<memtype, int> m_perc;
2016-05-19 14:41:06 +00:00
};
}
2016-06-15 03:32:35 +00:00
LEMONBUDDY_NS_END