waybar/include/modules/battery.hpp

34 lines
663 B
C++
Raw Normal View History

2018-08-08 23:54:58 +02:00
#pragma once
2018-08-09 13:30:11 +02:00
#include <json/json.h>
2018-08-08 23:54:58 +02:00
#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"
2018-08-09 12:05:48 +02:00
#include "IModule.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
2018-08-16 14:29:41 +02:00
class Battery : public IModule {
public:
Battery(Json::Value);
auto update() -> void;
operator Gtk::Widget&();
private:
std::string getIcon(uint16_t percentage);
static inline const fs::path data_dir_ = "/sys/class/power_supply/";
Gtk::Label label_;
Json::Value config_;
util::SleeperThread thread_;
std::vector<fs::path> batteries_;
};
2018-08-08 23:54:58 +02:00
}