feat: basic config file

This commit is contained in:
Alexis
2018-08-09 12:05:48 +02:00
parent 4cec0f390b
commit 39a0ae04a8
18 changed files with 176 additions and 61 deletions

View File

@ -4,12 +4,14 @@
#include <fmt/format.h>
#include <thread>
#include "util/chrono.hpp"
#include "IModule.hpp"
namespace waybar::modules {
class Clock {
class Clock : public IModule {
public:
Clock();
auto update() -> void;
operator Gtk::Widget &();
private:
Gtk::Label _label;