summary refs log tree commit diff
path: root/bin/get-fonts
blob: 2d9571fbd1d693c4bdac64ac2057bd0b68ddb713 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

OS=$(uname)

if [[ "${OS}" == "Darwin" ]]; then
  brew tap caskroom/fonts
  brew cask reinstall font-dejavu-sans
else
  echo "I don't know how to install the font on ${OS}" 1>&2
  exit 1
fi