waybar/include/modules/custom.hpp
2018-08-18 17:27:40 +02:00

21 lines
346 B
C++

#pragma once
#include <fmt/format.h>
#include <iostream>
#include <sys/wait.h>
#include "util/chrono.hpp"
#include "ALabel.hpp"
namespace waybar::modules {
class Custom : public ALabel {
public:
Custom(std::string, Json::Value);
auto update() -> void;
private:
std::string name_;
waybar::util::SleeperThread thread_;
};
}