mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
8 lines
239 B
Bash
Executable file
8 lines
239 B
Bash
Executable file
#!/bin/bash
|
|
if [ -z "$(ls -A "${DEPS_DIR}/xcb-util-xrm" 2>/dev/null)" ]; then
|
|
git clone --recursive https://github.com/Airblader/xcb-util-xrm
|
|
cd xcb-util-xrm
|
|
./autogen.sh --prefix=/usr --libdir=/usr/lib
|
|
make
|
|
sudo make install
|
|
fi
|