diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp index f2f4b712..8d9b6d96 100644 --- a/hyprctl/main.cpp +++ b/hyprctl/main.cpp @@ -232,6 +232,11 @@ int main(int argc, char** argv) { fullRequest += ARGS[i] + " "; } + if (fullRequest.empty()) { + printf("%s\n", USAGE.c_str()); + return 1; + } + fullRequest.pop_back(); // remove trailing space fullRequest = fullArgs + "/" + fullRequest;