Fix missing fonts

This commit is contained in:
Jesús 2020-07-19 12:43:54 -05:00
parent 343e89812a
commit 4746a1e6e0
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
5 changed files with 5 additions and 3 deletions

BIN
fonts/all-the-icons.ttf Normal file

Binary file not shown.

BIN
fonts/file-icons.ttf Normal file

Binary file not shown.

Binary file not shown.

BIN
fonts/weathericons.ttf Normal file

Binary file not shown.

View File

@ -33,7 +33,7 @@ do
printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying images...' '\e[m' printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying images...' '\e[m'
install -d -m755 "$HOME/.config/i3/images" install -d -m755 "$HOME/.config/i3/images"
for i in background.png imagelock.png; do for i in background.png imagelock.png; do
install -m644 -v /tmp/i3config/images/$i "$HOME/.config/i3/images/$i" install -m644 -v "/tmp/i3config/images/$i" "$HOME/.config/i3/images/$i"
done done
printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying scripts...' '\e[m' printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying scripts...' '\e[m'
@ -41,7 +41,7 @@ do
printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying i3-config...' '\e[m' printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying i3-config...' '\e[m'
for i in config i3blocks.conf; do for i in config i3blocks.conf; do
install -m644 -v /tmp/i3config/$i "$HOME/.config/i3/$i" install -m644 -v "/tmp/i3config/$i" "$HOME/.config/i3/$i"
done done
printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying conky...' '\e[m' printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying conky...' '\e[m'
@ -50,7 +50,9 @@ do
printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying FontAwesome...' '\e[m' 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/" install -d -m755 "$HOME/.local/share/fonts/"
install -m644 -v /tmp/i3config/fonts/fontawesome.ttf "$HOME/.local/share/fonts/" for i in *.ttf; do
install -m644 -v "/tmp/i3config/fonts/$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' printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying termite-config...' '\e[m'
install -d -m755 "$HOME/.config/termite" install -d -m755 "$HOME/.config/termite"