Last active
October 9, 2019 05:41
-
-
Save r9y9/5938857 to your computer and use it in GitHub Desktop.
Font install script for MigMix 1P, Migu 1M, Inconsolata, Ricty and Ricty for Powerline.
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 | |
# Requirement: wget, unzip, git and fontforge | |
function check_requirement() { | |
messages=() | |
for r in "wget" "unzip" "git" "fontforge" | |
do | |
[ -z `which $r` ] && messages+=($r) | |
done | |
if [ ${#messages[@]} -gt 0 ] | |
then | |
echo "NOT found: ${messages[@]}. Try again after installing the command(s)." | |
exit 1; | |
fi | |
} | |
# Install directory | |
[ ! -d ~/.fonts ] && mkdir -p ~/.fonts/ | |
# MigMix 1P | |
function install_migumix-1p() { | |
wget -O migmix.zip "http://sourceforge.jp/frs/redir.php?m=jaist&f=%2Fmix-mplus-ipa%2F59021%2Fmigmix-1p-20130617.zip" | |
unzip -o migmix.zip -d migmix | |
find migmix -name "*.ttf" | xargs -i mv -vf {} ~/.fonts | |
rm -rf migmix* | |
} | |
# Migu 1M | |
function install_migu-1m() { | |
wget -O migu-1m.zip "http://sourceforge.jp/frs/redir.php?m=jaist&f=%2Fmix-mplus-ipa%2F59022%2Fmigu-1m-20130617.zip" | |
unzip -o migu-1m.zip -d migu-1m | |
find migu-1m -name "*.ttf" | xargs -i mv -vf {} ~/.fonts | |
rm -rf migu-1m* | |
} | |
# Inconsolata | |
function install_inconsolata() { | |
wget -O Inconsolata.otf "http://levien.com/type/myfonts/Inconsolata.otf" | |
mv -vf Inconsolata.otf ~/.fonts | |
} | |
# Ricty | |
# Migu-1m and Inconsolata must be installed in advance | |
function install_ricty() { | |
git clone https://github.com/yascentur/Ricty.git | |
sh Ricty/ricty_generator.sh auto | |
mv -vf Ricty*.ttf ~/.fonts | |
rm -rf Ricty | |
} | |
# Powerline symbols | |
function install_powerline_symbols() { | |
wget -O PowerlineSymbols.otf "https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf" | |
mv -vf PowerlineSymbols.otf ~/.fonts/ | |
wget -O 10-powerline-symbols.conf "https://github.com/Lokaltog/powerline/raw/develop/font/10-powerline-symbols.conf" | |
[ ! -d ~/.config/fontconfig/conf.d/ ] && mkdir -p ~/.config/fontconfig/conf.d/ | |
mv -vf 10-powerline-symbols.conf ~/.config/fontconfig/conf.d/ | |
} | |
# Ricty for powerline | |
function install_ricty_for_powerline() { | |
wget -O fontpatcher.py "https://github.com/Lokaltog/powerline/raw/develop/font/fontpatcher.py" | |
wget -O fontpatcher-symbols.sfd "https://github.com/Lokaltog/powerline/raw/develop/font/fontpatcher-symbols.sfd" | |
fontforge -script fontpatcher.py ~/.fonts/Ricty-Regular.ttf | |
mv -vf Ricty*.ttf ~/.fonts | |
rm -f fontpatcher.py | |
rm -f fontpatcher-symbols.sfd | |
} | |
check_requirement | |
install_migumix-1p | |
install_migu-1m | |
install_inconsolata | |
install_ricty | |
install_powerline_symbols | |
install_ricty_for_powerline | |
fc-cache -fv ~/.fonts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment