dein bruder
This commit is contained in:
21
include/app.hpp
Normal file
21
include/app.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "bar/bar.hpp"
|
||||
#include "glibmm/refptr.h"
|
||||
#include "gtkmm/application.h"
|
||||
#include "services/hyprland.hpp"
|
||||
|
||||
class App {
|
||||
public:
|
||||
App();
|
||||
|
||||
int run();
|
||||
private:
|
||||
Glib::RefPtr<Gtk::Application> app;
|
||||
std::vector<Bar*> bars;
|
||||
HyprlandService hyprlandService;
|
||||
|
||||
void setupServices();
|
||||
};
|
||||
Reference in New Issue
Block a user