mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-05-19 08:30:22 -07:00
hyprctl: Fix hyprctl
batch JSON command (#8749)
This commit is contained in:
parent
46d5b363fa
commit
07a19e2c95
@ -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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user