Tag: ubuntu

Install Hack Typeface on Ubuntu/Debian

Want to try Hack Typeface? Use the following gist:

DEST_DIR=~/.fonts/hack_typeface
mkdir -p $DEST_DIR
# Check if you have unzip, if not install
which unzip >/dev/null || (echo "INFO: I need to install unzip"; sudo apt-get install unzip)
# Download font
wget --directory-prefix $DEST_DIR https://github.com/chrissimpkins/Hack/releases/download/v2.010/Hack-v2_010-otf.zip
# Decompress
unzip $DEST_DIR/Hack-*.zip -d $DEST_DIR
# Clean zip file
rm $DEST_DIR/Hack-*.zip
# Rebuild font information
sudo fc-cache -f -v

Happy coding!

More

© Maximiliano Padulo. Site built with Pelican. Theme forked from perec. Member of the Internet Defense League.