Skip to content

Instantly share code, notes, and snippets.

@tonejito
Created January 17, 2019 18:04
Show Gist options
  • Save tonejito/f21543ee22ff07a48cc6571f699590ce to your computer and use it in GitHub Desktop.
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

Download and install Noto Emoji font in Debian GNU/Linux with Gnome Desktop

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