diff options
author | Michael Stapelberg <michael@stapelberg.de> | 2019-02-11 09:52:23 +0100 |
---|---|---|
committer | Michael Stapelberg <michael@stapelberg.de> | 2019-02-11 09:52:23 +0100 |
commit | ee946d0d8c49f164fde0f863a5fffb646d20db27 (patch) | |
tree | 9631a7a312432af9cc933b39fcd807bff45bec2e /README.md | |
parent | 49461ac56f3cbea432f4c6ec547410162237fcf7 (diff) |
README: update build instructions
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -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 ``` |