1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/include/modules/memory.hpp

34 lines
724 B
C++
Raw Normal View History

#pragma once
2016-05-19 10:41:06 -04:00
2016-06-14 23:32:35 -04:00
#include <istream>
2016-05-19 10:41:06 -04:00
2016-06-14 23:32:35 -04:00
#include "config.hpp"
#include "modules/meta.hpp"
2016-05-19 10:41:06 -04:00
2016-11-19 00:22:44 -05:00
POLYBAR_NS
2016-06-14 23:32:35 -04:00
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 15:22:45 -04:00
void setup();
bool update();
bool build(builder* builder, string tag) const;
2016-06-14 23:32:35 -04: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-14 23:32:35 -04:00
map<memtype, progressbar_t> m_bars;
map<memtype, int> m_perc;
2016-05-19 10:41:06 -04:00
};
}
2016-06-14 23:32:35 -04:00
2016-11-19 00:22:44 -05:00
POLYBAR_NS_END