Files
bar/include/widgets/clock.hpp
2025-12-10 17:58:01 +01:00

13 lines
230 B
C++

#pragma once
#include <gtk4-layer-shell/gtk4-layer-shell.h>
#include <gtkmm.h>
#include <gtkmm/label.h>
#include "interface/updateable.ipp"
class Clock : public Gtk::Label, public IUpdatable {
public:
bool onUpdate();
};