hyprctl: Fix hyprctl batch JSON command (#8749)

This commit is contained in:
Khalid 2024-12-17 20:26:02 +03:00 committed by Vaxry
parent 46d5b363fa
commit 07a19e2c95

View file

@ -284,8 +284,10 @@ int requestHyprpaper(std::string arg) {
void batchRequest(std::string arg, bool json) { void batchRequest(std::string arg, bool json) {
std::string commands = arg.substr(arg.find_first_of(' ') + 1); std::string commands = arg.substr(arg.find_first_of(' ') + 1);
if (json) if (json) {
RE2::GlobalReplace(&commands, ";\\s*", ";j/"); RE2::GlobalReplace(&commands, ";\\s*", ";j/");
commands.insert(0, "j/");
}
std::string rq = "[[BATCH]]" + commands; std::string rq = "[[BATCH]]" + commands;
request(rq); request(rq);