-
Notifications
You must be signed in to change notification settings - Fork 3
/
conf.sh
executable file
·81 lines (60 loc) · 1.85 KB
/
conf.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
#!/bin/bash
source './utils.sh'
declare -a FILES_TO_SYMLINK=(
'bash/.bash_aliases'
# 'bash/.bash_autocomplete'
'bash/.bash_exports'
'bash/.bash_functions'
# 'bash/.bash_logout'
# 'bash/.bash_options'
'bash/.bash_profile'
'bash/.bash_prompt'
'bash/.bashrc'
'bash/.inputrc'
'i3/config'
'i3/status.conf'
# 'git/.gitattributes'
'git/.gitconfig'
# 'git/.gitignore'
'atom/keymap.cson'
'atom/snippets.cson'
)
set_conf_files() {
local i=''
local sourceFile=''
local targetFile=''
mkd $HOME/.i3
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
for i in "${FILES_TO_SYMLINK[@]}"; do
sourceFile="$(pwd)/$i"
targetFile="$HOME/.$(printf "%s" "$i" | sed -e "s/\<bash\>//g" -e "s/\<git\>//g" )" #if in the bash|git folder, remove the bash folder when creating link
if [ ! -e "$targetFile" ]; then
execute "ln -fs $sourceFile $targetFile" "$targetFile → $sourceFile"
elif [ "$(readlink "$targetFile")" == "$sourceFile" ]; then
print_success "$targetFile → $sourceFile"
else
ask_for_confirmation "'$targetFile' already exists, do you want to overwrite it?"
if answer_is_yes; then
rm -rf "$targetFile"
execute "ln -fs $sourceFile $targetFile" "$targetFile → $sourceFile"
else
print_error "$targetFile → $sourceFile"
fi
fi
done
}
main() {
# configuration files
ask_for_confirmation "Do you want to set the configuration files?"
printf '\n'
if answer_is_yes; then
set_conf_files
fi
ask_for_sudo
# recommanded packages
ask_for_confirmation "Do you want to install the recommanded packages?"
if answer_is_yes; then
./os/install_packages.sh
fi
}
main