Files
hyprland-toggle-tiling/include/ShellService.hpp

12 lines
214 B
C++

#ifndef SHELL_SERVICE_H
#define SHELL_SERVICE_H
#include <string>
class ShellService {
public:
static std::string exec(const std::string& command);
static std::string getHomePath();
};
#endif