summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2019-02-11 09:52:23 +0100
committerMichael Stapelberg <michael@stapelberg.de>2019-02-11 09:52:23 +0100
commitee946d0d8c49f164fde0f863a5fffb646d20db27 (patch)
tree9631a7a312432af9cc933b39fcd807bff45bec2e /README.md
parent49461ac56f3cbea432f4c6ec547410162237fcf7 (diff)
README: update build instructions
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 10 insertions, 2 deletions
diff --git a/README.md b/README.md
index 084f373..d818ee6 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,15 @@ i3status is developed at https://github.com/i3/i3status
## Compilation
-Compiling is done with the usual make-line
+Prefer installing i3status via your Linux distribution’s package manager.
+
+If you absolutely have to build from source, use:
+
```bash
- make && sudo make install
+ autoreconf -fi
+ mkdir build
+ cd build
+ ../configure
+ make -j8
+ sudo make install
```