19 lines
326 B
Bash
Executable File
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
|
|
|