Download and install Noto Emoji font in Debian GNU/Linux with Gnome Desktop
Created
January 17, 2019 18:04
-
-
Save tonejito/f21543ee22ff07a48cc6571f699590ce to your computer and use it in GitHub Desktop.
Download and install Noto Emoji font in Debian GNU/Linux with Gnome Desktop
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
SHELL=/bin/bash | |
DOWNLOADS=~/Downloads | |
NOTO_URL=https://noto-website-2.storage.googleapis.com/pkgs/Noto-hinted.zip | |
NOTO_ZIP=noto-font.zip | |
NOTO_DIR=/usr/share/fonts/opentype/noto | |
all: download install | |
download: | |
test -d ${DOWNLOADS}/ || mkdir -vp ${DOWNLOADS}/ | |
wget -c ${NOTO_URL} -O ${DOWNLOADS}/${NOTO_ZIP} | |
install: | |
sudo mkdir -vp ${NOTO_DIR} | |
sudo unzip ${DOWNLOADS}/${NOTO_ZIP} -d ${NOTO_DIR} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment