Files
bar/include/widgets/clock.hpp
2025-12-08 23:41:34 +01:00

12 lines
227 B
C++

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