Waybar/include/modules/custom.hpp

21 lines
352 B
C++
Raw Normal View History

#pragma once
#include <fmt/format.h>
2018-08-18 15:27:40 +00:00
#include <iostream>
#include "util/chrono.hpp"
#include "util/command.hpp"
#include "ALabel.hpp"
namespace waybar::modules {
class Custom : public ALabel {
2018-08-16 12:29:41 +00:00
public:
2018-08-18 15:27:40 +00:00
Custom(std::string, Json::Value);
2018-08-16 12:29:41 +00:00
auto update() -> void;
private:
2018-08-18 15:27:40 +00:00
std::string name_;
2018-08-16 12:29:41 +00:00
waybar::util::SleeperThread thread_;
};
}