fix code style

This commit is contained in:
2025-12-10 17:58:01 +01:00
parent 4d61a80a7c
commit 0b3a6c4696
19 changed files with 1016 additions and 1366 deletions

View File

@@ -9,15 +9,16 @@
#include "services/tray.hpp"
class App {
public:
public:
App();
int run();
private:
private:
Glib::RefPtr<Gtk::Application> app;
std::vector<Bar*> bars;
std::vector<Bar *> bars;
HyprlandService hyprlandService;
TrayService trayService;
void setupServices();
void setupServices();
};