-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.sh
executable file
·214 lines (143 loc) · 5.66 KB
/
setup.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#!/bin/bash
# Get current dir (so run this script from anywhere)
# export DOTFILES_DIR
# DOTFILES_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# # Update dotfiles itself first
# [ -d "$DOTFILES_DIR/.git" ] && git --work-tree="$DOTFILES_DIR" --git-dir="$DOTFILES_DIR/.git" pull origin master
# # Package managers & packages
# . "$DOTFILES_DIR/install/brew.sh"
# . "$DOTFILES_DIR/install/pip.sh"
# . "$DOTFILES_DIR/install/vundle.sh"
# # Install fonts
# cp -r $DOTFILES_DIR/fonts/* ~/Library/Fonts/
cd "$(dirname "${BASH_SOURCE[0]}")" \
&& . "./utils.sh"
declare -r GITHUB_REPOSITORY="coderzh/dotfiles"
declare -r DOTFILES_ORIGIN="[email protected]:$GITHUB_REPOSITORY.git"
declare -r DOTFILES_TARBALL_URL="https://github.com/$GITHUB_REPOSITORY/tarball/master"
declare -r DOTFILES_UTILS_URL="https://raw.githubusercontent.com/$GITHUB_REPOSITORY/master/utils.sh"
declare -r DOTFILES_CONFIG_URL="https://raw.githubusercontent.com/$GITHUB_REPOSITORY/master/setup.conf"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
declare skipQuestions=false
download_dotfiles() {
local tmpFile=""
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
print_in_purple "\n • Download and extract archive\n\n"
tmpFile="$(mktemp /tmp/XXXXX)"
download "$DOTFILES_TARBALL_URL" "$tmpFile"
print_result $? "Download archive" "true"
printf "\n"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
if ! $skipQuestions; then
ask_for_confirmation "Do you want to store the dotfiles in '$dotfilesDirectory'?"
if ! answer_is_yes; then
dotfilesDirectory=""
while [ -z "$dotfilesDirectory" ]; do
ask "Please specify another location for the dotfiles (path): "
dotfilesDirectory="$(get_answer)"
done
fi
# Ensure the `dotfiles` directory is available
while [ -e "$dotfilesDirectory" ]; do
ask_for_confirmation "'$dotfilesDirectory' already exists, do you want to overwrite it?"
if answer_is_yes; then
rm -rf "$dotfilesDirectory"
break
else
dotfilesDirectory=""
while [ -z "$dotfilesDirectory" ]; do
ask "Please specify another location for the dotfiles (path): "
dotfilesDirectory="$(get_answer)"
done
fi
done
printf "\n"
else
rm -rf "$dotfilesDirectory" &> /dev/null
fi
mkdir -p "$dotfilesDirectory"
print_result $? "Create '$dotfilesDirectory'" "true"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Extract archive in the `dotfiles` directory.
extract "$tmpFile" "$dotfilesDirectory"
print_result $? "Extract archive" "true"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
rm -rf "$tmpFile"
print_result $? "Remove archive"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
cd "$dotfilesDirectory/src/os" \
|| return 1
}
extract() {
local archive="$1"
local outputDir="$2"
if command -v "tar" &> /dev/null; then
tar -zxf "$archive" --strip-components 1 -C "$outputDir"
return $?
fi
return 1
}
verify_os() {
declare -r MINIMUM_MACOS_VERSION="10.10"
declare -r MINIMUM_UBUNTU_VERSION="14.04"
local os_name=""
local os_version=""
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Check if the OS is `macOS` and
# it's above the required version.
os_name="$(uname -s)"
if [ "$os_name" == "Darwin" ]; then
os_version="$(sw_vers -productVersion)"
if is_supported_version "$os_version" "$MINIMUM_MACOS_VERSION"; then
return 0
else
printf "Sorry, this script is intended only for macOS %s+" "$MINIMUM_MACOS_VERSION"
fi
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Check if the OS is `Ubuntu` and
# it's above the required version.
elif [ "$os_name" == "Linux" ] && [ -e "/etc/lsb-release" ]; then
os_version="$(lsb_release -d | cut -f2 | cut -d' ' -f2)"
if is_supported_version "$os_version" "$MINIMUM_UBUNTU_VERSION"; then
return 0
else
printf "Sorry, this script is intended only for Ubuntu %s+" "$MINIMUM_UBUNTU_VERSION"
fi
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
else
printf "Sorry, this script is intended only for macOS and Ubuntu!"
fi
return 1
}
main() {
# 进入该脚本目录
cd "$(dirname "${BASH_SOURCE[0]}")" || exit 1
# 如果 utils.sh 存在且可执行
if [ -x "utils.sh" ]; then
. "utils.sh" || exit 1
else
download_and_execute_file ${DOTFILES_UTILS_URL} || exit 1
fi
if [ -x "setup.conf" ]; then
. "setup.conf" || exit 1
else
download_and_execute_file ${DOTFILES_CONFIG_URL} || exit 1
fi
verify_os || exit 1
skip_questions "$@" && skipQuestions=true
ask_for_sudo
# 如果不是执行本地的setup.sh脚本,则下载dotfiles。
printf "%s" "${BASH_SOURCE[0]}" | grep "setup.sh" &> /dev/null \
|| download_dotfiles
print_in_purple "\n • Create directories\n\n"
create_directories ${DIRECTORIES[@]}
print_in_purple "\n • Create symbolic links\n\n"
create_symlinks $skipQuestions ${FILES_TO_SYMLINK[@]}
print_in_purple "\n • Copy files\n\n"
copy_os_files
print_in_purple "\n • Execute commands\n\n"
execute_commands "${COMMANDS[@]}"
./install/main.sh
}
# $@ 为 shell 脚本参数
main "$@"