Created
May 30, 2018 13:36
-
-
Save Aragami1408/2622c7fc8a31809b2cdc4f6b79a91f1a to your computer and use it in GitHub Desktop.
polybar installing shell file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install polybar on Ubuntu 16 | |
set -e | |
set -x | |
sudo apt-get update && sudo apt-get -y dist-upgrade && \ | |
sudo apt install -y cmake cmake-data libcairo2-dev 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 libxcb-xrm-dev i3-wm libjsoncpp-dev libasound2-dev libpulse-dev libmpdclient-dev libiw-dev libcurl4-openssl-dev libxcb-cursor-dev | |
mkdir -p $HOME/repos | |
cd $HOMD/repos | |
git clone --branch 3.1.0 --recursive https://github.com/jaagr/polybar | |
mkdir polybar/build | |
cd polybar/build | |
cmake .. | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment