update fonts to be installed
This commit is contained in:
parent
b64c3918ea
commit
f13578c6c7
|
@ -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
|
||||||
|
|
Reference in New Issue