mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
41 lines
880 B
C++
41 lines
880 B
C++
#pragma once
|
|
|
|
#include <istream>
|
|
|
|
#include "config.hpp"
|
|
#include "drawtypes/label.hpp"
|
|
#include "drawtypes/ramp.hpp"
|
|
#include "modules/meta.hpp"
|
|
|
|
LEMONBUDDY_NS
|
|
|
|
namespace modules {
|
|
enum class temp_state { NORMAL = 0, WARN };
|
|
|
|
class temperature_module : public timer_module<temperature_module> {
|
|
public:
|
|
using timer_module::timer_module;
|
|
|
|
void setup();
|
|
bool update();
|
|
string get_format() const;
|
|
bool build(builder* builder, string tag) const;
|
|
|
|
private:
|
|
static constexpr auto TAG_LABEL = "<label>";
|
|
static constexpr auto TAG_LABEL_WARN = "<label-warn>";
|
|
static constexpr auto TAG_RAMP = "<ramp>";
|
|
static constexpr auto FORMAT_WARN = "format-warn";
|
|
|
|
map<temp_state, label_t> m_label;
|
|
ramp_t m_ramp;
|
|
|
|
string m_path;
|
|
int m_zone = 0;
|
|
int m_tempwarn = 0;
|
|
int m_temp = 0;
|
|
int m_perc = 0;
|
|
};
|
|
}
|
|
|
|
LEMONBUDDY_NS_END
|