mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
19 lines
288 B
C++
19 lines
288 B
C++
#pragma once
|
|
|
|
#include <fmt/format.h>
|
|
#include "fmt/time.h"
|
|
#include "util/chrono.hpp"
|
|
#include "ALabel.hpp"
|
|
|
|
namespace waybar::modules {
|
|
|
|
class Clock : public ALabel {
|
|
public:
|
|
Clock(Json::Value);
|
|
auto update() -> void;
|
|
private:
|
|
waybar::util::SleeperThread thread_;
|
|
};
|
|
|
|
}
|