22 lines
336 B
C++
22 lines
336 B
C++
#pragma once
|
|
|
|
#include <gtk4-layer-shell/gtk4-layer-shell.h>
|
|
#include <gtkmm.h>
|
|
|
|
#include "services/hyprland.hpp"
|
|
#include "widgets/clock.hpp"
|
|
|
|
class Bar : public Gtk::Window
|
|
{
|
|
public:
|
|
Bar();
|
|
|
|
protected:
|
|
Clock clock;
|
|
HyprlandService hyprland;
|
|
Gtk::CenterBox main_box{};
|
|
|
|
void setup_ui();
|
|
void load_css();
|
|
};
|