Waybar/include/modules/battery.hpp

30 lines
561 B
C++
Raw Normal View History

2018-08-08 21:54:58 +00:00
#pragma once
#include <filesystem>
#include <fstream>
#include <iostream>
#include <fmt/format.h>
2018-08-13 12:05:13 +00:00
#include <sys/inotify.h>
2018-08-13 20:33:07 +00:00
#include <algorithm>
2018-08-08 21:54:58 +00:00
#include "util/chrono.hpp"
#include "ALabel.hpp"
2018-08-08 21:54:58 +00:00
namespace waybar::modules {
2018-08-16 12:29:41 +00:00
namespace fs = std::filesystem;
2018-08-08 21:54:58 +00:00
class Battery : public ALabel {
2018-08-16 12:29:41 +00:00
public:
Battery(Json::Value);
auto update() -> void;
private:
std::string getIcon(uint16_t percentage);
static inline const fs::path data_dir_ = "/sys/class/power_supply/";
util::SleeperThread thread_;
std::vector<fs::path> batteries_;
};
2018-08-08 21:54:58 +00:00
}