Controlling tiled/floating mode works

This commit is contained in:
2025-06-10 14:55:42 +02:00
parent b24c9bac2d
commit 9a4619b1ba
3 changed files with 63 additions and 0 deletions

View File

@@ -11,6 +11,10 @@ class HyprlandService {
public:
static Workspace getCurrentWorkspace();
static std::list<Client> getClients();
static std::list<Client> getClientsOnActiveWorkspace();
static void setClientFloating(Client&);
static void setClientTiled(Client&);
static void toggleClientFloating(Client&);
static std::string exec(const std::string& command);
};
#endif