This commit is contained in:
Alex
2018-08-20 14:50:45 +02:00
committed by GitHub
parent b7e3d10fb7
commit 49232eed8d
30 changed files with 261 additions and 235 deletions

View File

@ -10,10 +10,12 @@ namespace waybar::modules {
class Custom : public ALabel {
public:
Custom(std::string, Json::Value);
Custom(const std::string&, const Json::Value&);
auto update() -> void;
private:
std::string name_;
void worker();
const std::string& name_;
waybar::util::SleeperThread thread_;
};