waybar/include/modules/clock.hpp
2018-08-16 14:29:41 +02:00

23 lines
391 B
C++

#pragma once
#include <json/json.h>
#include <fmt/format.h>
#include "fmt/time.h"
#include "util/chrono.hpp"
#include "IModule.hpp"
namespace waybar::modules {
class Clock : public IModule {
public:
Clock(Json::Value);
auto update() -> void;
operator Gtk::Widget &();
private:
Gtk::Label label_;
waybar::util::SleeperThread thread_;
Json::Value config_;
};
}