README: update build instructions

This commit is contained in:
Michael Stapelberg 2019-02-11 09:52:23 +01:00
parent 49461ac56f
commit ee946d0d8c

View File

@ -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 distributions 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
```