-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path700-installing-fonts-v2.sh
executable file
·62 lines (49 loc) · 2.54 KB
/
700-installing-fonts-v2.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/bash
set -e
##################################################################################################################
# Author : Erik Dubois
# Website : https://www.erikdubois.be
# Website : https://www.arcolinux.info
# Website : https://www.arcolinux.com
# Website : https://www.arcolinuxd.com
# Website : https://www.arcolinuxb.com
# Website : https://www.arcolinuxiso.com
# Website : https://www.arcolinuxforum.com
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
echo "Installing fonts from Arch Linux repo"
sudo pacman -S adobe-source-sans-pro-fonts --noconfirm --needed
sudo pacman -S cantarell-fonts --noconfirm --needed
sudo pacman -S noto-fonts --noconfirm --needed
sudo pacman -S ttf-bitstream-vera --noconfirm --needed
sudo pacman -S ttf-dejavu --noconfirm --needed
sudo pacman -S ttf-droid --noconfirm --needed
sudo pacman -S ttf-hack --noconfirm --needed
sudo pacman -S ttf-inconsolata --noconfirm --needed
sudo pacman -S ttf-liberation --noconfirm --needed
sudo pacman -S ttf-roboto --noconfirm --needed
sudo pacman -S ttf-ubuntu-font-family --noconfirm --needed
sudo pacman -S tamsyn-font --noconfirm --needed
sudo pacman -S powerline-fonts otf-powerline-symbols --noconfirm --needed
yay -S nerd-fonts-complete --noconfirm --needed
yay -S ttf-devicons --noconfirm --needed
yay -S vim-devicons --noconfirm --needed
echo "################################################################"
echo "#### Fonts from Arch Linux repo have been installed ####"
echo "################################################################"
echo "################################################################"
echo "#### Installing fonts for conkies ####"
echo "################################################################"
[ -d $HOME"/.fonts" ] || mkdir -p $HOME"/.fonts"
echo "Copy fonts to local share fonts and create a soft link .fonts"
cp Personal/settings/fonts/* ~/.local/share/fonts/
ln -s ~/.local/share/fonts ~/.fonts
echo "Building new fonts into the cache files";
echo "Depending on the number of fonts, this may take a while..."
fc-cache -fv ~/.fonts
echo "################################################################"
echo "######### Fonts have been copied and loaded ################"
echo "################################################################"