diff --git a/base-setup/fonts.sh b/base-setup/fonts.sh new file mode 100755 index 0000000..5381d03 --- /dev/null +++ b/base-setup/fonts.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +if [ -z $_config_loaded ] ; then + echo "No config loaded - loading '../config.sh'" + . ../config.sh +fi + +set -e + +# _cmd_su="su --pty --login $_user -c" + +if command -v pacman ; then + pacman -Syu adobe-source-code-pro-fonts adobe-source-serif-pro-fonts +else + echo 'Error - no package installer found.' + exit 1 +fi +