Skip to content

Instantly share code, notes, and snippets.

@r9y9
Last active October 9, 2019 05:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r9y9/5938857 to your computer and use it in GitHub Desktop.
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.
#!/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