polybar/include/modules/temperature.hpp

46 lines
1.1 KiB
C++
Raw Normal View History

#pragma once
#include <istream>
2016-11-20 22:04:31 +00:00
#include "modules/meta/timer_module.hpp"
#include "settings.hpp"
2016-11-19 05:22:44 +00:00
POLYBAR_NS
namespace modules {
enum class temp_state { NORMAL = 0, WARN };
class temperature_module : public timer_module<temperature_module> {
public:
explicit temperature_module(const bar_settings&, string);
bool update();
string get_format() const;
2016-11-25 12:55:15 +00:00
bool build(builder* builder, const string& tag) const;
static constexpr auto TYPE = "internal/temperature";
private:
static constexpr auto TAG_LABEL = "<label>";
static constexpr auto TAG_LABEL_WARN = "<label-warn>";
2016-11-11 18:35:08 +00:00
static constexpr auto TAG_RAMP = "<ramp>";
static constexpr auto FORMAT_WARN = "format-warn";
map<temp_state, label_t> m_label;
2016-11-11 18:35:08 +00:00
ramp_t m_ramp;
string m_path;
string m_zone_type;
2016-11-11 18:35:08 +00:00
int m_zone = 0;
// Base temperature used for where to start the ramp
int m_tempbase = 0;
2016-11-11 18:35:08 +00:00
int m_tempwarn = 0;
int m_temp = 0;
// Whether or not to show units with the %temperature-X% tokens
bool m_units{true};
};
} // namespace modules
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END