2016-05-31 05:58:58 +02:00
|
|
|
#pragma once
|
2016-05-19 16:41:06 +02:00
|
|
|
|
2016-11-20 23:04:31 +01:00
|
|
|
#include "modules/meta/timer_module.hpp"
|
2017-01-12 20:28:44 +01:00
|
|
|
#include "settings.hpp"
|
2016-05-19 16:41:06 +02:00
|
|
|
|
2016-11-19 06:22:44 +01:00
|
|
|
POLYBAR_NS
|
2016-06-15 05:32:35 +02:00
|
|
|
|
|
|
|
namespace modules {
|
|
|
|
enum class memtype { NONE = 0, TOTAL, USED, FREE, SHARED, BUFFERS, CACHE, AVAILABLE };
|
2020-12-02 21:55:13 +07:00
|
|
|
enum class memory_state { NORMAL = 0, WARN };
|
2016-06-15 05:32:35 +02:00
|
|
|
class memory_module : public timer_module<memory_module> {
|
|
|
|
public:
|
2016-12-21 08:00:09 +01:00
|
|
|
explicit memory_module(const bar_settings&, string);
|
2016-06-15 05:32:35 +02:00
|
|
|
|
2016-11-02 20:22:45 +01:00
|
|
|
bool update();
|
2020-12-02 21:55:13 +07:00
|
|
|
string get_format() const;
|
2016-11-25 13:55:15 +01:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-06-15 05:32:35 +02:00
|
|
|
|
2020-05-15 19:59:08 +02:00
|
|
|
static constexpr auto TYPE = "internal/memory";
|
|
|
|
|
2016-06-15 05:32:35 +02:00
|
|
|
private:
|
2017-01-12 20:28:44 +01:00
|
|
|
static constexpr const char* TAG_LABEL{"<label>"};
|
2020-12-02 21:55:13 +07:00
|
|
|
static constexpr const char* TAG_LABEL_WARN{"<label-warn>"};
|
2017-01-12 20:28:44 +01:00
|
|
|
static constexpr const char* TAG_BAR_USED{"<bar-used>"};
|
|
|
|
static constexpr const char* TAG_BAR_FREE{"<bar-free>"};
|
2018-02-19 18:04:55 +01:00
|
|
|
static constexpr const char* TAG_RAMP_USED{"<ramp-used>"};
|
|
|
|
static constexpr const char* TAG_RAMP_FREE{"<ramp-free>"};
|
2018-09-14 20:42:04 +02:00
|
|
|
static constexpr const char* TAG_BAR_SWAP_USED{"<bar-swap-used>"};
|
|
|
|
static constexpr const char* TAG_BAR_SWAP_FREE{"<bar-swap-free>"};
|
|
|
|
static constexpr const char* TAG_RAMP_SWAP_USED{"<ramp-swap-used>"};
|
|
|
|
static constexpr const char* TAG_RAMP_SWAP_FREE{"<ramp-swap-free>"};
|
2020-12-02 21:55:13 +07:00
|
|
|
static constexpr const char* FORMAT_WARN{"format-warn"};
|
2016-06-15 05:32:35 +02:00
|
|
|
|
|
|
|
label_t m_label;
|
2020-12-02 21:55:13 +07:00
|
|
|
label_t m_labelwarn;
|
2017-01-12 20:28:44 +01:00
|
|
|
progressbar_t m_bar_memused;
|
|
|
|
progressbar_t m_bar_memfree;
|
|
|
|
int m_perc_memused{0};
|
|
|
|
int m_perc_memfree{0};
|
2020-12-02 21:55:13 +07:00
|
|
|
int m_perc_memused_warn{90};
|
2018-02-19 18:04:55 +01:00
|
|
|
ramp_t m_ramp_memused;
|
|
|
|
ramp_t m_ramp_memfree;
|
2018-09-14 20:42:04 +02:00
|
|
|
progressbar_t m_bar_swapused;
|
|
|
|
progressbar_t m_bar_swapfree;
|
2018-02-25 14:12:38 +03:00
|
|
|
int m_perc_swap_used{0};
|
|
|
|
int m_perc_swap_free{0};
|
2018-09-14 20:42:04 +02:00
|
|
|
ramp_t m_ramp_swapused;
|
|
|
|
ramp_t m_ramp_swapfree;
|
2016-05-19 16:41:06 +02:00
|
|
|
};
|
2020-05-15 19:59:08 +02:00
|
|
|
} // namespace modules
|
2016-06-15 05:32:35 +02:00
|
|
|
|
2016-11-19 06:22:44 +01:00
|
|
|
POLYBAR_NS_END
|