aboutsummaryrefslogtreecommitdiffhomepage
path: root/hyprctl
diff options
context:
space:
mode:
authoralba4k <[email protected]>2022-06-17 12:18:25 +0200
committeralba4k <[email protected]>2022-06-17 12:18:25 +0200
commit9c6c5481bbf094f54ea7b9aaa9f941d50b57d6a0 (patch)
tree8f7ed62dfdf81e1233ea23bd27e8575b2c716389 /hyprctl
parent354e2651289861bf7027fd02be41088e45fc1c99 (diff)
downloadHyprland-9c6c5481bbf094f54ea7b9aaa9f941d50b57d6a0.tar.gz
Hyprland-9c6c5481bbf094f54ea7b9aaa9f941d50b57d6a0.zip
revised makefile, newline after execution
Diffstat (limited to 'hyprctl')
-rw-r--r--hyprctl/Makefile6
-rw-r--r--hyprctl/main.cpp12
2 files changed, 9 insertions, 9 deletions
diff --git a/hyprctl/Makefile b/hyprctl/Makefile
index d279830a..0e997886 100644
--- a/hyprctl/Makefile
+++ b/hyprctl/Makefile
@@ -1,4 +1,4 @@
-clean:
- rm -rf ./hyprctl ./hyprctl
all:
- g++ -std=c++20 ./main.cpp -o ./hyprctl \ No newline at end of file
+ g++ -std=c++20 ./main.cpp -o ./hyprctl
+clean:
+ rm ./hyprctl \ No newline at end of file
diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp
index d0c7d9ed..278ef5ee 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(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