2018-08-10 14:26:46 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2018-08-18 15:27:40 +00:00
|
|
|
#include <iostream>
|
2019-03-18 17:46:44 +00:00
|
|
|
#include <csignal>
|
2018-12-26 10:13:36 +00:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2018-08-18 15:54:20 +00:00
|
|
|
#include "util/command.hpp"
|
2018-10-31 23:40:44 +00:00
|
|
|
#include "util/json.hpp"
|
2018-08-18 09:43:48 +00:00
|
|
|
#include "ALabel.hpp"
|
2018-08-10 14:26:46 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-08-18 09:43:48 +00:00
|
|
|
class Custom : public ALabel {
|
2018-08-16 12:29:41 +00:00
|
|
|
public:
|
2018-12-18 16:30:54 +00:00
|
|
|
Custom(const std::string&, const Json::Value&);
|
2018-12-08 11:58:47 +00:00
|
|
|
~Custom();
|
2018-08-16 12:29:41 +00:00
|
|
|
auto update() -> void;
|
2019-03-18 17:46:44 +00:00
|
|
|
void refresh(int /*signal*/);
|
2018-08-16 12:29:41 +00:00
|
|
|
private:
|
2018-09-18 21:15:37 +00:00
|
|
|
void delayWorker();
|
|
|
|
void continuousWorker();
|
2018-10-31 23:40:44 +00:00
|
|
|
void parseOutputRaw();
|
|
|
|
void parseOutputJson();
|
2018-08-20 12:50:45 +00:00
|
|
|
|
2018-08-21 08:50:09 +00:00
|
|
|
const std::string name_;
|
2018-10-30 20:28:31 +00:00
|
|
|
std::string text_;
|
2019-02-25 21:04:09 +00:00
|
|
|
std::string alt_;
|
2018-10-30 20:28:31 +00:00
|
|
|
std::string tooltip_;
|
2019-04-15 08:18:27 +00:00
|
|
|
std::vector<std::string> class_;
|
2018-12-26 02:52:05 +00:00
|
|
|
int percentage_;
|
2018-08-16 12:29:41 +00:00
|
|
|
waybar::util::SleeperThread thread_;
|
2018-09-05 17:20:19 +00:00
|
|
|
waybar::util::command::res output_;
|
2018-10-31 23:40:44 +00:00
|
|
|
waybar::util::JsonParser parser_;
|
2018-12-08 11:58:47 +00:00
|
|
|
FILE* fp_;
|
2018-08-16 12:29:41 +00:00
|
|
|
};
|
2018-08-10 14:26:46 +00:00
|
|
|
|
|
|
|
}
|