waybar/include/modules/temperature.hpp

27 lines
476 B
C++
Raw Normal View History

2019-03-13 13:18:08 +01:00
#pragma once
#include <fmt/format.h>
2022-04-06 08:37:19 +02:00
2019-03-13 13:18:08 +01:00
#include <fstream>
2022-04-06 08:37:19 +02:00
2022-11-24 12:28:52 +01:00
#include "ALabel.hpp"
2019-04-18 17:52:00 +02:00
#include "util/sleeper_thread.hpp"
2019-03-13 13:18:08 +01:00
namespace waybar::modules {
2022-11-24 12:28:52 +01:00
class Temperature : public ALabel {
2019-04-18 17:52:00 +02:00
public:
Temperature(const std::string&, const Json::Value&);
2023-03-02 14:57:07 +01:00
virtual ~Temperature() = default;
auto update() -> void override;
2019-04-18 17:52:00 +02:00
private:
2022-04-06 08:37:19 +02:00
float getTemperature();
bool isCritical(uint16_t);
2019-03-13 13:18:08 +01:00
2022-04-06 08:37:19 +02:00
std::string file_path_;
2019-05-29 17:53:22 +02:00
util::SleeperThread thread_;
2019-03-13 13:18:08 +01:00
};
2019-05-29 17:53:22 +02:00
} // namespace waybar::modules