From afa6e21b8881a4a7d01b960ee4a2421c495777aa Mon Sep 17 00:00:00 2001 From: Daniel Horton Date: Tue, 14 May 2024 16:12:55 +0100 Subject: [PATCH] README: Fixed getconf command in build instructions (#60) getconf NPROCESSORS_CONF isn't a valid command. The correct command is getconf _NPROCESSORS_CONF. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0259817..e6584fc 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ will make those events ignored. ### Building: ```sh cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -S . -B ./build -cmake --build ./build --config Release --target hypridle -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` +cmake --build ./build --config Release --target hypridle -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF` ``` ### Installation: