17 lines
343 B
C
17 lines
343 B
C
|
|
#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
|