aboutsummaryrefslogtreecommitdiffhomepage
path: root/hyprctl/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'hyprctl/main.cpp')
-rw-r--r--hyprctl/main.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp
index d0c7d9ed..f60fb600 100644
--- a/hyprctl/main.cpp
+++ b/hyprctl/main.cpp
@@ -15,8 +15,7 @@
#include <fstream>
#include <string>
-const std::string USAGE = R"#(
-usage: hyprctl [command] [(opt)args]
+const std::string USAGE = R"#(usage: hyprctl [command] [(opt)args]
monitors
workspaces
@@ -27,8 +26,7 @@ usage: hyprctl [command] [(opt)args]
dispatch
keyword
version
- reload
-)#";
+ reload)#";
void request(std::string arg) {
const auto SERVERSOCKET = socket(AF_UNIX, SOCK_STREAM, 0);
@@ -121,7 +119,7 @@ int main(int argc, char** argv) {
int bflag = 0, sflag = 0, index, c;
if (argc < 2) {
- printf("%s", USAGE.c_str());
+ printf("%s\n", USAGE.c_str());
return 1;
}
@@ -136,10 +134,12 @@ int main(int argc, char** argv) {
else if (!strcmp(argv[1], "dispatch")) dispatchRequest(argc, argv);
else if (!strcmp(argv[1], "keyword")) keywordRequest(argc, argv);
else if (!strcmp(argv[1], "--batch")) batchRequest(argc, argv);
+ else if (!strcmp(argv[1], "--help")) printf("%s", USAGE.c_str());
else {
- printf("%s", USAGE.c_str());
+ printf("%s\n", USAGE.c_str());
return 1;
}
+ printf("\n");
return 0;
-} \ No newline at end of file
+}