Created
June 27, 2017 20:53
-
-
Save jotebe/c5d516561f02f9c8df50b4357ce0c4a9 to your computer and use it in GitHub Desktop.
Little bash script to build Ubuntu customizer
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 | |
# redownload and build deb for ubuntu customizer from github | |
# https://github.com/kamilion/customizer/ | |
cd $HOME | |
wget https://github.com/clearkimura/Customizer/archive/master.tar.gz | |
tar zxvf master.tar.gz | |
cd customizer-master && make deb | |
cd .. && sudo dpkg --install customizer*.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment