polybar/include/modules/memory.hpp

32 lines
765 B
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
2016-11-20 22:04:31 +00:00
#include "modules/meta/timer_module.hpp"
2017-01-12 19:28:44 +00:00
#include "settings.hpp"
2016-05-19 14:41:06 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
namespace modules {
enum class memtype { NONE = 0, TOTAL, USED, FREE, SHARED, BUFFERS, CACHE, AVAILABLE };
class memory_module : public timer_module<memory_module> {
public:
explicit memory_module(const bar_settings&, string);
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
bool update();
2016-11-25 12:55:15 +00:00
bool build(builder* builder, const string& tag) const;
2016-06-15 03:32:35 +00:00
private:
2017-01-12 19:28:44 +00:00
static constexpr const char* TAG_LABEL{"<label>"};
static constexpr const char* TAG_BAR_USED{"<bar-used>"};
static constexpr const char* TAG_BAR_FREE{"<bar-free>"};
2016-06-15 03:32:35 +00:00
label_t m_label;
2017-01-12 19:28:44 +00:00
progressbar_t m_bar_memused;
progressbar_t m_bar_memfree;
int m_perc_memused{0};
int m_perc_memfree{0};
2016-05-19 14:41:06 +00:00
};
}
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END