mirror of https://github.com/polybar/polybar.git
Updated Compiling (markdown)
parent
f2fe83a5c1
commit
d7216bfcbb
53
Compiling.md
53
Compiling.md
|
@ -1,15 +1,46 @@
|
||||||
## apt-get
|
## Dependencies
|
||||||
|
|
||||||
### Required libraries
|
### apt-get
|
||||||
~~~
|
~~~ sh
|
||||||
cmake cmake-data
|
# Required
|
||||||
libcairo2-dev libxcb1-dev
|
cmake
|
||||||
libxcb-ewmh-dev libxcb-icccm4-dev libxcb-image0-dev
|
cmake-data
|
||||||
libxcb-randr0-dev libxcb-util0-dev libxcb-xkb-dev
|
libcairo2-dev
|
||||||
pkg-config python-xcbgen xcb-proto
|
libxcb1-dev
|
||||||
|
libxcb-ewmh-dev
|
||||||
|
libxcb-icccm4-dev
|
||||||
|
libxcb-image0-dev
|
||||||
|
libxcb-randr0-dev
|
||||||
|
libxcb-util0-dev
|
||||||
|
libxcb-xkb-dev
|
||||||
|
pkg-config
|
||||||
|
python-xcbgen
|
||||||
|
xcb-proto
|
||||||
|
|
||||||
|
# Enables support for getting values from the X resource db
|
||||||
|
libxcb-xrm-dev
|
||||||
|
|
||||||
|
# Enables the internal i3 module
|
||||||
|
i3-wm
|
||||||
|
|
||||||
|
# Enables the internal volume module
|
||||||
|
libasound2-dev
|
||||||
|
|
||||||
|
# Enables the internal mpd module
|
||||||
|
libmpdclient-dev
|
||||||
|
|
||||||
|
# Enables the internal network module
|
||||||
|
libiw-dev
|
||||||
|
|
||||||
|
# Enables the internal github module
|
||||||
|
libcurl4-openssl-dev
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||
### Optional dependencies for extended module support
|
## Building
|
||||||
~~~
|
~~~ sh
|
||||||
i3-wm libasound2-dev libmpdclient-dev libiw-dev libcurl4-openssl-dev
|
git clone --recursive https://github.com/jaagr/polybar
|
||||||
|
mkdir polybar/build
|
||||||
|
cd polybar/build
|
||||||
|
cmake ..
|
||||||
|
sudo make install
|
||||||
~~~
|
~~~
|
Loading…
Reference in New Issue