2019-03-13 12:18:08 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include <fstream>
|
|
|
|
#include "ALabel.hpp"
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2019-03-13 12:18:08 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
|
|
|
class Temperature : public ALabel {
|
2019-04-18 15:52:00 +00:00
|
|
|
public:
|
|
|
|
Temperature(const std::string&, const Json::Value&);
|
|
|
|
~Temperature() = default;
|
|
|
|
auto update() -> void;
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::tuple<uint16_t, uint16_t> getTemperature();
|
|
|
|
bool isCritical(uint16_t);
|
2019-03-13 12:18:08 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
std::string file_path_;
|
|
|
|
waybar::util::SleeperThread thread_;
|
2019-03-13 12:18:08 +00:00
|
|
|
};
|
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
} // namespace waybar::modules
|