update fonts to be installed

This commit is contained in:
Ray Elliott 2020-03-26 12:48:52 +00:00
parent b64c3918ea
commit f13578c6c7
1 changed files with 18 additions and 0 deletions

18
base-setup/fonts.sh Executable file
View File

@ -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