mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
20 lines
296 B
C++
20 lines
296 B
C++
|
#pragma once
|
||
|
|
||
|
#include <gtkmm.h>
|
||
|
#include <fmt/format.h>
|
||
|
#include <thread>
|
||
|
#include "util/chrono.hpp"
|
||
|
|
||
|
namespace waybar::modules {
|
||
|
|
||
|
class Clock {
|
||
|
public:
|
||
|
Clock();
|
||
|
operator Gtk::Widget &();
|
||
|
private:
|
||
|
Gtk::Label _label;
|
||
|
waybar::util::SleeperThread _thread;
|
||
|
};
|
||
|
|
||
|
}
|