hyprctl: Fix hyprctl batch JSON command (#8749)

This commit is contained in:
Khalid 2024-12-17 20:26:02 +03:00 committed by GitHub
parent e2c78c00e5
commit 5f1df55fcb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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);