From 178e8823db829f752c4dadaac3f6b9d12c54ce27 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 17 Feb 2017 08:51:55 -0800 Subject: [bin] Script to install fonts --- bin/get-fonts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 bin/get-fonts diff --git a/bin/get-fonts b/bin/get-fonts new file mode 100755 index 0000000..2d9571f --- /dev/null +++ b/bin/get-fonts @@ -0,0 +1,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 -- cgit 1.4.1