aboutsummaryrefslogtreecommitdiffhomepage
path: root/hyprctl
diff options
context:
space:
mode:
authorvaxerski <[email protected]>2023-04-20 23:59:31 +0100
committervaxerski <[email protected]>2023-04-20 23:59:31 +0100
commit510db64860fa307e33db5fdb843c6cc5a428b5a4 (patch)
tree67ba9f40af6e260747af708345f3045d82b87e74 /hyprctl
parentb15803510c67b7b89090c99f03781d9052c959f5 (diff)
downloadHyprland-510db64860fa307e33db5fdb843c6cc5a428b5a4.tar.gz
Hyprland-510db64860fa307e33db5fdb843c6cc5a428b5a4.zip
hyprctl: allow spaces in cursor themes
Diffstat (limited to 'hyprctl')
-rw-r--r--hyprctl/main.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp
index 87c332fb..1639bb67 100644
--- a/hyprctl/main.cpp
+++ b/hyprctl/main.cpp
@@ -227,7 +227,10 @@ int setcursorRequest(int argc, char** argv) {
return 1;
}
- std::string rq = "setcursor " + std::string(argv[2]) + " " + std::string(argv[3]);
+ std::string rq = "setcursor ";
+ for (size_t i = 2; i < argc; ++i)
+ rq += std::string(argv[i]) + " ";
+ rq.pop_back();
request(rq);
return 0;