Skip to content

Instantly share code, notes, and snippets.

@jotebe
Created June 27, 2017 20:53
Show Gist options
  • Save jotebe/c5d516561f02f9c8df50b4357ce0c4a9 to your computer and use it in GitHub Desktop.
Save jotebe/c5d516561f02f9c8df50b4357ce0c4a9 to your computer and use it in GitHub Desktop.
Little bash script to build Ubuntu customizer
#!/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