Install Google Fonts on fedora
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
# Original : Michalis Georgiou | |
# Modified : D4zzy for Fedora | |
# Modified : Ayman Bagabas for /usr/local | |
_wgeturl="https://github.com/google/fonts/archive/master.tar.gz" | |
_gf="google-fonts" | |
# install wget | |
echo "Installing wget..." | |
sudo dnf install wget | |
echo "Connecting to Github server..." | |
wget $_wgeturl -O $_gf.tar.gz | |
echo "Extracting the downloaded archive..." | |
tar -xf $_gf.tar.gz | |
echo "Creating the /usr/local/share/fonts/truetype/$_gf folder" | |
sudo mkdir -p /usr/local/share/fonts/truetype/$_gf | |
echo "Installing all .ttf fonts in /usr/local/share/fonts/truetype/$_gf" | |
find $PWD/fonts-master/ -name "*.ttf" -exec sudo install -m644 {} /usr/local/share/fonts/truetype/google-fonts/ \; || return 1 | |
echo "Updating the font cache" | |
fc-cache -f > /dev/null | |
# clean up, but only the .tar.gz, the user may need the folder | |
rm -f $_gf.tar.gz | |
echo "Job Done - enjoy your fonts..." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment