blob: 60881f11c686d8d966a28b0d39c34833403ce426 (
plain)
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
|
#!/bin/bash
# install.sh
check_is_sudo() {
if [ "$EUID" -ne 0 ]; then
echo "Please run as root."
exit
fi
}
usage() {
echo "Usage: sudo bash install.sh [OPTION]"
echo " dotfiles - link all dotfiles"
echo " all - install all things listed above"
}
get_dotfiles() {
# create subshell
(
echo "--------- Get Dotfiles Now ---------"
read -r -p "It will remove the .dotfiles folder if it exists and overwrite all dotfiles. Are you sure? [y/N] " response
response=${response,,} # tolower
if [[ "$response" =~ ^(yes|y)$ ]]; then
cd "$HOME"
rm -rf .dotfiles
git clone https://github.com/humpylin/dotfiles .dotfiles
rm -rf .vimrc .tmux.conf .bashrc .zshrc
ln -s .dotfiles/.vimrc .vimrc
ln -s .dotfiles/.tmux.conf .tmux.conf
ln -s .dotfiles/.bashrc .bashrc
ln -s .dotfiles/.zshrc .zshrc
fi
)
}
main() {
local cmd=$1
if [[ -z "$cmd" ]]; then
usage
exit 1
fi
check_is_sudo
if [[ $cmd == all ]]; then
get_dotfiles
fi
}
main "$@"
|