add notifications

This commit is contained in:
2026-01-31 22:46:19 +01:00
parent 8283531748
commit 13278d518a
10 changed files with 226 additions and 7 deletions

View File

@@ -4,6 +4,7 @@
#include "bar/bar.hpp"
#include "services/hyprland.hpp"
#include "services/notification.hpp"
#include "glibmm/refptr.h"
#include "gtkmm/application.h"
@@ -17,8 +18,9 @@ class App {
private:
Glib::RefPtr<Gtk::Application> app;
std::vector<std::shared_ptr<Bar>> bars;
std::shared_ptr<NotificationService> notificationService = nullptr;
HyprlandService *hyprlandService = nullptr;
TrayService *trayService = TrayService::getInstance();
TrayService *trayService = TrayService::getInstance();
void setupServices();
};