-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsymlinks.sh
executable file
·53 lines (42 loc) · 1.18 KB
/
symlinks.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
#!/usr/bin/env bash
source 'utils.sh'
declare -a DOTFILES_TO_SYMLINK=(
'tern-config'
'shell/tmux.conf'
'shell/zshrc'
'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/alacritty
link "$(pwd)/config/alacritty" "$HOME/.config/alacritty"
mkdir -p $HOME/.config/nvim
link "$(pwd)/config/nvim" "$HOME/.config/nvim"
}
main