2018-08-10 14:26:46 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2018-08-18 15:27:40 +00:00
|
|
|
#include <iostream>
|
2018-08-10 14:26:46 +00:00
|
|
|
#include "util/chrono.hpp"
|
2018-08-18 15:54:20 +00:00
|
|
|
#include "util/command.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-08-21 08:50:09 +00:00
|
|
|
Custom(const std::string, const Json::Value&);
|
2018-08-16 12:29:41 +00:00
|
|
|
auto update() -> void;
|
|
|
|
private:
|
2018-08-20 12:50:45 +00:00
|
|
|
void worker();
|
|
|
|
|
2018-08-21 08:50:09 +00:00
|
|
|
const std::string name_;
|
2018-08-16 12:29:41 +00:00
|
|
|
waybar::util::SleeperThread thread_;
|
|
|
|
};
|
2018-08-10 14:26:46 +00:00
|
|
|
|
|
|
|
}
|