-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·72 lines (62 loc) · 1.22 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
#!/bin/bash
usage_exit() {
echo "Usage: `basename $0` [-d] remove [-s] create [-u] recreate symlinks" 1>&2
exit 1
}
DOT_FILES=(
bash_local
bash_profile
bashrc
clang-format
config/nvim/init.lua
git-cz.json
rufo
sqlfluff
tmux.conf
vimrc
zshrc
)
CONFIG_DIR=(nvim)
create_symbolic_link() {
echo "create symbolic links. [v] created [-] already exists"
for dir in ${CONFIG_DIR[@]}; do
mkdir -p $HOME/.config/$dir
done
for file in ${DOT_FILES[@]}; do
if [ -f "$HOME/.$file" ]; then
echo "[-] .$file"
else
ln -s $HOME/workspace/dotfiles/$file $HOME/.$file
echo "[v] .$file"
fi
done
}
remove_symbolic_link() {
echo "remove symbolic links. [v] removed [-] no file"
for file in ${DOT_FILES[@]}; do
if [ -L "$HOME/.$file" ]; then
unlink $HOME/.$file
echo "[v] .$file"
else
echo "[-] .$file"
fi
done
}
recreate_symbolic_link() {
echo "recreate symbolick links"
remove_symbolic_link
create_symbolic_link
}
if [ $# -ne 1 ]; then
usage_exit
fi
while getopts dsu OPT
do
case $OPT in
"d" ) remove_symbolic_link ;;
"u" ) recreate_symbolic_link ;;
"s" ) create_symbolic_link ;;
* ) usage_exit ;;
esac
done
echo "finish!"