waybar/include/modules/battery.hpp

35 lines
702 B
C++
Raw Normal View History

2018-08-08 23:54:58 +02:00
#pragma once
#include <filesystem>
#include <fstream>
#include <iostream>
#include <fmt/format.h>
2018-08-13 14:05:13 +02:00
#include <sys/inotify.h>
2018-08-13 22:33:07 +02:00
#include <algorithm>
2018-08-08 23:54:58 +02:00
#include "util/chrono.hpp"
#include "ALabel.hpp"
2018-08-08 23:54:58 +02:00
namespace waybar::modules {
2018-08-16 14:29:41 +02:00
namespace fs = std::filesystem;
2018-08-08 23:54:58 +02:00
class Battery : public ALabel {
2018-08-16 14:29:41 +02:00
public:
2018-08-20 14:50:45 +02:00
Battery(const Json::Value&);
2018-08-19 13:39:57 +02:00
~Battery();
2018-08-16 14:29:41 +02:00
auto update() -> void;
private:
static inline const fs::path data_dir_ = "/sys/class/power_supply/";
2018-08-20 14:50:45 +02:00
void worker();
std::tuple<uint16_t, std::string> getInfos();
std::string getState(uint16_t, bool);
2018-08-16 14:29:41 +02:00
util::SleeperThread thread_;
util::SleeperThread threadTimer_;
2018-08-16 14:29:41 +02:00
std::vector<fs::path> batteries_;
2018-08-19 13:39:57 +02:00
int fd_;
2018-08-16 14:29:41 +02:00
};
2018-08-08 23:54:58 +02:00
}