2018-08-08 21:54:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "ALabel.hpp"
|
2018-08-15 18:53:27 +00:00
|
|
|
#include "fmt/time.h"
|
2018-12-26 10:13:36 +00:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2018-08-08 21:54:58 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-08-18 09:43:48 +00:00
|
|
|
class Clock : public ALabel {
|
2019-04-18 15:52:00 +00:00
|
|
|
public:
|
|
|
|
Clock(const std::string&, const Json::Value&);
|
|
|
|
~Clock() = default;
|
|
|
|
auto update() -> void;
|
|
|
|
|
|
|
|
private:
|
|
|
|
waybar::util::SleeperThread thread_;
|
2018-08-16 12:29:41 +00:00
|
|
|
};
|
2018-08-08 21:54:58 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
} // namespace waybar::modules
|