2018-08-10 16:26:46 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2018-08-18 17:27:40 +02:00
|
|
|
#include <iostream>
|
|
|
|
#include <sys/wait.h>
|
2018-08-10 16:26:46 +02:00
|
|
|
#include "util/chrono.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-08-18 17:27:40 +02:00
|
|
|
Custom(std::string, Json::Value);
|
2018-08-16 14:29:41 +02:00
|
|
|
auto update() -> void;
|
|
|
|
private:
|
2018-08-18 17:27:40 +02:00
|
|
|
std::string name_;
|
2018-08-16 14:29:41 +02:00
|
|
|
waybar::util::SleeperThread thread_;
|
|
|
|
};
|
2018-08-10 16:26:46 +02:00
|
|
|
|
|
|
|
}
|