Files
Waybar/include/modules/simpleclock.hpp
T

21 lines
341 B
C++
Raw Normal View History

#pragma once
#include <fmt/chrono.h>
2021-05-27 15:40:54 +02:00
#include "AButton.hpp"
#include "util/sleeper_thread.hpp"
namespace waybar::modules {
2021-05-27 15:40:54 +02:00
class Clock : public AButton {
public:
Clock(const std::string&, const Json::Value&);
~Clock() = default;
auto update() -> void;
private:
util::SleeperThread thread_;
};
} // namespace waybar::modules