forked from nddery/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsymlinks.sh
More file actions
executable file
·47 lines (39 loc) · 1.09 KB
/
symlinks.sh
File metadata and controls
executable file
·47 lines (39 loc) · 1.09 KB
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
#!/usr/bin/env bash
source 'utils.sh'
declare -a DOTFILES_TO_SYMLINK=(
'shell/zshrc'
'git/git_template'
'git/gitconfig'
'git/gitignore'
)
link() {
local sourceFile=$1
local targetFile=$2
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
}
main() {
local i=''
local sourceFile=''
local targetFile=''
for i in ${DOTFILES_TO_SYMLINK[@]}; do
sourceFile="$(pwd)/$i"
targetFile="$HOME/.$(printf "%s" "$i" | sed "s/.*\/\(.*\)/\1/g")"
link $sourceFile $targetFile
done
# setup XDG config directory and configs
mkdir -p $HOME/.config/nvim
link "$(pwd)/config/nvim/init.vim" "$HOME/.config/nvim/init.vim"
}
main