mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-01 12:41:55 -07:00
fix up hyprctl dispatch
This commit is contained in:
@@ -152,7 +152,10 @@ void dispatchRequest(int argc, char** argv) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string rq = "/dispatch " + std::string(argv[2]) + " " + std::string(argv[3]);
|
std::string rq = "/dispatch";
|
||||||
|
|
||||||
|
for(int i = 2; i < argc; i++)
|
||||||
|
rq += " " + std::string(argv[i]);
|
||||||
|
|
||||||
request(rq);
|
request(rq);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user