-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_dependencies
executable file
·59 lines (49 loc) · 1.28 KB
/
install_dependencies
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
#!/bin/bash
## TODO, instalacion para ach linux
current_folder=$(pwd)
install_folder=$HOME
font_awesome="font-awesome-4.7.0"
mkdir ~/.fonts
# FONTS
echo "Installing powerline....."
git clone https://github.com/powerline/fonts.git --depth=1 tmp_fonts
cd tmp_fonts
#./install.sh
cp -R * $install_folder/.fonts
cd $current_folder
rm -rf tmp_fonts
echo "Installing Nerd-Fonts......."
git clone https://github.com/ryanoasis/nerd-fonts.git nerd_fonts
cd nerd_fonts
#./install.sh
cd patched-fonts
cp -R * $install_folder/.fonts
cd $current_folder
rm -rf nerd_fonts
echo "Installing fontawesome....."
wget http://fontawesome.io/assets/${font_awesome}.zip
unzip "${font_awesome}.zip"
cd $font_awesome
cd .fonts
# mkdir -p $install_folder/.fonts
cp *.ttf $install_folder/.fonts
cd $current_folder
rm -rf $current_folder/$font_awesome $current_folder.zip
echo "Installing System San Francisco....."
git clone https://github.com/supermarin/YosemiteSanFranciscoFont.git san_francisco
cd san_francisco
cp *.ttf $install_folder/.fonts
cd $current_folder
rm -rf san_francisco
#https://github.com/vorillaz/devicons
#https://github.com/blog/1135-the-making-of-octicons
#https://github.com/gabrielelana/pomicons
echo "Restoring cache......"
fc-cache -vf
# vim
# plug
# tmux
# tmux plugin manager
# oh-my-zsh
# nvm
# rvm