-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
executable file
·154 lines (123 loc) · 3.31 KB
/
install.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#!/usr/bin/env bash
#
# This script will install some configuration files by creating symbolic links at $HOME .
CURRDIR="`dirname $0`"
cd $CURRDIR
DOTFILES_ROOT="`pwd`"
set -e
echo ''
info () {
printf " [ \033[00;34m..\033[0m ] $1"
}
user () {
printf "\r [ \033[0;33m?\033[0m ] $1 "
}
success () {
printf "\r\033[2K [ \033[00;32mOK\033[0m ] $1\n"
}
fail () {
printf "\r\033[2K [\033[0;31mFAIL\033[0m] $1\n"
echo ''
exit
}
setup_gitconfig () {
if ! [ -f modules/git/gitconfig.symlink ]
then
info 'setup gitconfig'
git_credential='cache'
if [ "$(uname -s)" == "Darwin" ]
then
git_credential='osxkeychain'
fi
user ' - What is your github author name?'
read -e git_authorname
user ' - What is your github author email?'
read -e git_authoremail
sed -e "s/AUTHORNAME/$git_authorname/g" -e "s/AUTHOREMAIL/$git_authoremail/g" -e "s/GIT_CREDENTIAL_HELPER/$git_credential/g" modules/git/gitconfig.symlink.example > modules/git/gitconfig.symlink
success 'gitconfig'
fi
}
link_files () {
ln -fs $1 $2
success "linked $1 to $2"
}
install_dotfiles () {
info 'installing dotfiles'
local src_file_extension="$1" # symlink
local link_directory_dst="$2" # $HOME
local prefix_dst="$3" #.
overwrite_all=false
backup_all=false
skip_all=false
info "Linking symlink files ..."
for source in `find $DOTFILES_ROOT -maxdepth 4 -name \*.$src_file_extension`
do
echo "Linking $source ..."
dest="$link_directory_dst/$prefix_dst`basename \"${source%.*}\"`"
if [ -f "$dest" ] || [ -d "$dest" ]
then
overwrite=false
backup=false
skip=false
if [ "$overwrite_all" == "false" ] && [ "$backup_all" == "false" ] && [ "$skip_all" == "false" ]
then
user "File already exists: `basename $source`, what do you want to do? [s]kip, [S]kip all, [o]verwrite, [O]verwrite all, [b]ackup, [B]ackup all?"
read -n 1 action
case "$action" in
o )
overwrite=true;;
O )
overwrite_all=true;;
b )
backup=true;;
B )
backup_all=true;;
s )
skip=true;;
S )
skip_all=true;;
* )
;;
esac
fi
if [ "$overwrite" == "true" ] || [ "$overwrite_all" == "true" ]
then
rm -rf $dest
success "removed $dest"
fi
if [ "$backup" == "true" ] || [ "$backup_all" == "true" ]
then
mv $dest $dest\.backup
success "moved $dest to $dest.backup"
fi
if [ "$skip" == "false" ] && [ "$skip_all" == "false" ]
then
link_files $source $dest
else
success "skipped $source"
fi
else
link_files $source $dest
fi
done
}
info "Base: $DOTFILES_ROOT"
setup_gitconfig
install_dotfiles "symlink" "$HOME" "."
install_dotfiles "configlink" "$HOME/.config" ""
# If we are on a mac, lets install and setup homebrew
if [ "$(uname -s)" == "Darwin" ]
then
info "installing dependencies"
if . bin/dot > /tmp/dotfiles-dot 2>&1
then
success "dependencies installed"
else
fail "error installing dependencies"
fi
fi
git submodule update --init --recursive
echo ''
echo ' All installed!'
echo ' To install custom configs and other submodules (like stderr) execute'
echo ' install-custom.sh'