mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
21 lines
346 B
C++
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_;
|
|
};
|
|
|
|
}
|