waybar/include/modules/clock.hpp

23 lines
391 B
C++
Raw Normal View History

2018-08-08 23:54:58 +02:00
#pragma once
2018-08-09 13:30:11 +02:00
#include <json/json.h>
2018-08-08 23:54:58 +02:00
#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"
2018-08-09 12:05:48 +02:00
#include "IModule.hpp"
2018-08-08 23:54:58 +02:00
namespace waybar::modules {
2018-08-16 14:29:41 +02:00
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_;
};
2018-08-08 23:54:58 +02:00
}