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