Organized source tree

This commit is contained in:
2025-06-10 14:16:44 +02:00
parent b0d173873c
commit 96ce9c023a
8 changed files with 9 additions and 5 deletions

16
include/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