Waybar/include/modules/battery.hpp

31 lines
676 B
C++
Raw Normal View History

2018-08-08 21:54:58 +00:00
#pragma once
2018-08-09 11:30:11 +00:00
#include <json/json.h>
2018-08-08 21:54:58 +00:00
#include <filesystem>
#include <fstream>
#include <iostream>
#include <fmt/format.h>
2018-08-13 12:05:13 +00:00
#include <sys/inotify.h>
2018-08-08 21:54:58 +00:00
#include "util/chrono.hpp"
2018-08-09 10:05:48 +00:00
#include "IModule.hpp"
2018-08-08 21:54:58 +00:00
namespace waybar::modules {
namespace fs = std::filesystem;
2018-08-09 10:05:48 +00:00
class Battery : public IModule {
2018-08-08 21:54:58 +00:00
public:
2018-08-09 11:30:11 +00:00
Battery(Json::Value config);
2018-08-08 21:54:58 +00:00
auto update() -> void;
operator Gtk::Widget&();
private:
2018-08-13 12:05:13 +00:00
std::string _getIcon(uint16_t percentage);
2018-08-08 21:54:58 +00:00
static inline const fs::path _data_dir = "/sys/class/power_supply/";
std::vector<fs::path> _batteries;
util::SleeperThread _thread;
Gtk::Label _label;
2018-08-09 11:30:11 +00:00
Json::Value _config;
2018-08-08 21:54:58 +00:00
};
}