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