Waybar/include/modules/clock.hpp

19 lines
315 B
C++
Raw Normal View History

2018-08-08 21:54:58 +00:00
#pragma once
#include <fmt/format.h>
2018-08-15 18:53:27 +00:00
#include "fmt/time.h"
2018-08-08 21:54:58 +00:00
#include "util/chrono.hpp"
#include "ALabel.hpp"
2018-08-08 21:54:58 +00:00
namespace waybar::modules {
class Clock : public ALabel {
2018-08-16 12:29:41 +00:00
public:
2018-12-18 16:30:54 +00:00
Clock(const std::string&, const Json::Value&);
2018-08-16 12:29:41 +00:00
auto update() -> void;
private:
waybar::util::SleeperThread thread_;
};
2018-08-08 21:54:58 +00:00
}