Fix URL local to copy-paste fonts

Report bug - issues:

- Saravia
This commit is contained in:
Jesús 2021-06-05 18:03:43 -05:00
parent 3db72ba29d
commit c511abab1c
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -58,8 +58,8 @@ do
printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying FontAwesome...' '\e[m'
install -d -m755 "$HOME/.local/share/fonts/"
for i in *.ttf; do
install -m644 -v "/tmp/i3config/fonts/$i" "$HOME/.local/share/fonts/"
for i in /tmp/i3config/fonts/*.ttf; do
install -m644 -v "$i" "$HOME/.local/share/fonts/"
done
printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying termite-config...' '\e[m'