Added hyprctl reload

This commit is contained in:
vaxerski
2022-05-08 15:28:45 +02:00
parent aa5b0d2cda
commit 39dcfa61c3
4 changed files with 14 additions and 2 deletions

View File

@@ -130,6 +130,12 @@ std::string dispatchKeyword(std::string in) {
return retval;
}
std::string reloadRequest() {
g_pConfigManager->m_bForceReload = true;
return "ok";
}
std::string getReply(std::string);
std::string dispatchBatch(std::string request) {
@@ -177,6 +183,8 @@ std::string getReply(std::string request) {
return layersRequest();
else if (request == "version")
return versionRequest();
else if (request == "reload")
return reloadRequest();
else if (request.find("dispatch") == 0)
return dispatchRequest(request);
else if (request.find("keyword") == 0)