waybar/include/modules/clock.hpp

19 lines
315 B
C++
Raw Normal View History

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