2018-08-08 21:54:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-08-09 11:30:11 +00:00
|
|
|
#include <json/json.h>
|
2018-08-08 21:54:58 +00:00
|
|
|
#include <fmt/format.h>
|
|
|
|
#include "util/chrono.hpp"
|
2018-08-09 10:05:48 +00:00
|
|
|
#include "IModule.hpp"
|
2018-08-08 21:54:58 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-08-09 10:05:48 +00:00
|
|
|
class Clock : public IModule {
|
2018-08-08 21:54:58 +00:00
|
|
|
public:
|
2018-08-09 11:30:11 +00:00
|
|
|
Clock(Json::Value config);
|
2018-08-09 10:05:48 +00:00
|
|
|
auto update() -> void;
|
2018-08-08 21:54:58 +00:00
|
|
|
operator Gtk::Widget &();
|
|
|
|
private:
|
|
|
|
Gtk::Label _label;
|
|
|
|
waybar::util::SleeperThread _thread;
|
2018-08-09 11:30:11 +00:00
|
|
|
Json::Value _config;
|
2018-08-08 21:54:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|