Created
May 15, 2015 11:23
-
-
Save shionryuu/f70d6da0d1aa65965b7f to your computer and use it in GitHub Desktop.
install rofi
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/sh | |
apt-get update | |
apt-get upgrade -y --show-upgraded | |
apt-get install -y sudo apt-get install libxft-dev libxinerama-dev libpango1.0-dev | |
wget -c https://github.com/DaveDavenport/rofi/releases/download/0.15.4/rofi-0.15.4.tar.gz | |
tar -xzvf rofi-0.15.4.tar.gz | |
cd rofi-0.15.4 | |
autoreconf -i | |
./configure | |
make && make install | |
apt-get autoclean -y | |
apt-get clean -y | |
apt-get autoremove -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment