Adding files

This commit is contained in:
2025-06-10 14:09:56 +02:00
commit b0d173873c
9 changed files with 219 additions and 0 deletions

16
HyprlandService.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef HYPRLAND_SERVICE_H
#define HYPRLAND_SERVICE_H
#include <list>
#include <string>
#include "Workspace.h"
#include "Client.h"
#include <nlohmann/json.hpp>
class HyprlandService {
public:
static Workspace getCurrentWorkspace();
static std::list<Client> getClients();
static std::string exec(const std::string& command);
};
#endif