Fix missing fonts
This commit is contained in:
parent
343e89812a
commit
4746a1e6e0
BIN
fonts/all-the-icons.ttf
Normal file
BIN
fonts/all-the-icons.ttf
Normal file
Binary file not shown.
BIN
fonts/file-icons.ttf
Normal file
BIN
fonts/file-icons.ttf
Normal file
Binary file not shown.
BIN
fonts/material-design-icons.ttf
Normal file
BIN
fonts/material-design-icons.ttf
Normal file
Binary file not shown.
BIN
fonts/weathericons.ttf
Normal file
BIN
fonts/weathericons.ttf
Normal file
Binary file not shown.
@ -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"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user