This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
install-scripts/base-setup/fonts.sh

19 lines
326 B
Bash
Executable File

#!/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