2016-05-30 23:58:58 -04:00
|
|
|
#pragma once
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-11-20 17:04:31 -05:00
|
|
|
#include "modules/meta/timer_module.hpp"
|
2023-05-08 13:36:12 -04:00
|
|
|
#include "modules/meta/types.hpp"
|
2017-01-12 14:28:44 -05:00
|
|
|
#include "settings.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 };
|
2020-12-02 09:55:13 -05:00
|
|
|
enum class memory_state { NORMAL = 0, WARN };
|
2016-06-14 23:32:35 -04:00
|
|
|
class memory_module : public timer_module<memory_module> {
|
|
|
|
public:
|
2023-05-01 08:58:52 -04:00
|
|
|
explicit memory_module(const bar_settings&, string, const config&);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
bool update();
|
2020-12-02 09:55:13 -05:00
|
|
|
string get_format() const;
|
2016-11-25 07:55:15 -05:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2023-05-08 13:36:12 -04:00
|
|
|
static constexpr auto TYPE = MEMORY_TYPE;
|
2020-05-15 13:59:08 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
private:
|
2017-01-12 14:28:44 -05:00
|
|
|
static constexpr const char* TAG_LABEL{"<label>"};
|
2020-12-02 09:55:13 -05:00
|
|
|
static constexpr const char* TAG_LABEL_WARN{"<label-warn>"};
|
2017-01-12 14:28:44 -05:00
|
|
|
static constexpr const char* TAG_BAR_USED{"<bar-used>"};
|
|
|
|
static constexpr const char* TAG_BAR_FREE{"<bar-free>"};
|
2018-02-19 12:04:55 -05:00
|
|
|
static constexpr const char* TAG_RAMP_USED{"<ramp-used>"};
|
|
|
|
static constexpr const char* TAG_RAMP_FREE{"<ramp-free>"};
|
2018-09-14 14:42:04 -04: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 09:55:13 -05:00
|
|
|
static constexpr const char* FORMAT_WARN{"format-warn"};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
label_t m_label;
|
2020-12-02 09:55:13 -05:00
|
|
|
label_t m_labelwarn;
|
2017-01-12 14:28:44 -05:00
|
|
|
progressbar_t m_bar_memused;
|
|
|
|
progressbar_t m_bar_memfree;
|
|
|
|
int m_perc_memused{0};
|
|
|
|
int m_perc_memfree{0};
|
2020-12-02 09:55:13 -05:00
|
|
|
int m_perc_memused_warn{90};
|
2018-02-19 12:04:55 -05:00
|
|
|
ramp_t m_ramp_memused;
|
|
|
|
ramp_t m_ramp_memfree;
|
2018-09-14 14:42:04 -04:00
|
|
|
progressbar_t m_bar_swapused;
|
|
|
|
progressbar_t m_bar_swapfree;
|
2018-02-25 06:12:38 -05:00
|
|
|
int m_perc_swap_used{0};
|
|
|
|
int m_perc_swap_free{0};
|
2018-09-14 14:42:04 -04:00
|
|
|
ramp_t m_ramp_swapused;
|
|
|
|
ramp_t m_ramp_swapfree;
|
2016-05-19 10:41:06 -04:00
|
|
|
};
|
2020-05-15 13:59:08 -04:00
|
|
|
} // namespace modules
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|