-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
install.sh
executable file
·216 lines (133 loc) · 6.33 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
# !/bin/bash
while true; do
read -p "Do you login App store? (y/n)" yn
case $yn in
[Yy]* ) break;;
[Nn]* ) echo "Please login App store first."; exit;;
* ) echo "Please answer yes or no.";;
esac
done
sudo pmset -c disablesleep 1
echo "Install brew"
echo "Start ###########################################################"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
echo "End #############################################################"
echo "Install apps by brew"
echo "Start ###########################################################"
brew bundle --file=./Brewfile
# Some apps not installed at the first time
brew bundle --file=./Brewfile
echo "End #############################################################"
echo "Environments"
echo "Start ###########################################################"
cp -a ./fonts/. ~/Library/Fonts
chmod 755 ./screenshot/install.sh
./screenshot/install.sh
git config --global init.defaultBranch main
git config core.ignorecase false
mkdir ~/Library/KeyBindings
cp ./KeyBindings/DefaultkeyBinding.dict ~/Library/KeyBindings/DefaultkeyBinding.dict
rm -rf ~/.config/karabiner/
mkdir -p ~/.config/karabiner/
cp ./KeyBindings/karabiner.json ~/.config/karabiner/
rm -rf ~/Library/DBeaverData/
mkdir -p ~/Library/DBeaverData/workspace6/General/.dbeaver/
cp -R ./dbeaver/ ~/Library/DBeaverData/workspace6/General/.dbeaver/
rm -rf ~/Library/Application\ Support/Rectangle/
mkdir -p ~/Library/Application\ Support/Rectangle/
cp ./rectangle/RectangleConfig.json ~/Library/Application\ Support/Rectangle/RectangleConfig.json
echo "End #############################################################"
echo "Install Ruby"
echo "Start ###########################################################"
chmod 755 ./ruby/install.sh
./ruby/install.sh
echo "End #############################################################"
echo "Install zsh"
echo "Start ###########################################################"
chmod 755 ./zsh/install.sh
./zsh/install.sh
echo "End #############################################################"
echo "Install iTerms2"
echo "Start ###########################################################"
chmod 755 ./iterm2/install.sh
zsh ./iterm2/install.sh
echo "End #############################################################"
echo "Install Node"
echo "Start ###########################################################"
chmod 755 ./node/install.sh
zsh ./node/install.sh
echo "End #############################################################"
echo "Install VSCode"
echo "Start ###########################################################"
chmod 755 ./vscode/install.sh
zsh ./vscode/install.sh
echo "End #############################################################"
echo "Install React Native"
echo "Start ###########################################################"
chmod 755 ./react-native/install.sh
zsh ./react-native/install.sh
echo "End #############################################################"
echo "Install Flutter"
echo "Start ###########################################################"
chmod 755 ./flutter/install.sh
zsh ./flutter/install.sh
echo "End #############################################################"
echo "Install Laravel"
echo "Start ###########################################################"
chmod 755 ./laravel/install.sh
zsh ./laravel/install.sh
echo "End #############################################################"
echo "Install Golang"
echo "Start ###########################################################"
chmod 755 ./go/install.sh
zsh ./go/install.sh
echo "End #############################################################"
echo "Install Jekyll"
echo "Start ###########################################################"
chmod 755 ./jekyll/install.sh
zsh ./jekyll/install.sh
echo "End #############################################################"
echo "Install Fastlane"
echo "Start ###########################################################"
gem install fastlane -NV
rbenv rehash
echo "End #############################################################"
echo "Install Xcode"
echo "Start ###########################################################"
chmod 755 ./xcode/install.sh
zsh ./xcode/install.sh
echo "End #############################################################"
echo "Keep in Dock"
echo "Start ###########################################################"
chmod 755 ./macos/dock.sh
./macos/dock.sh
echo "End #############################################################"
echo "Congiguration for Mac"
echo "Start ###########################################################"
chmod 755 ./macos/dock.sh
zsh ./macos/dock.sh
chmod 755 ./macos/touchpad.sh
zsh ./macos/touchpad.sh
echo "End #############################################################"
echo "Open app for settings"
echo "Start ###########################################################"
sudo xattr -dr com.apple.quarantine /Applications/Karabiner-Elements.app
open /Applications/Karabiner-Elements.app
sudo xattr -dr com.apple.quarantine /Applications/Rectangle.app
open /Applications/Rectangle.app
sudo xattr -dr com.apple.quarantine /Applications/Android\ Studio.app
open /Applications/Android\ Studio.app
echo "End #############################################################"
echo "Please change wallpaper"
echo "Right click on the desktop -> Change Wallpaper... -> Select Black color"
echo "Please change keyboard shortcuts by yourself."
echo "Oepn System Settings -> Keyboard -> Keyboard Shortcuts... -> Input Sources -> Select the previous input source -> Change to Command + Space"
echo "Oepn System Settings -> Keyboard -> Keyboard Shortcuts... -> Input Sources -> Select Next source input menu -> Change to Command + Shift + Space"
echo "Oepn System Settings -> Keyboard -> Keyboard Shortcuts... -> Spotlight -> Show Spotlight search -> Change to Option + Space"
echo "Oepn System Settings -> Keyboard -> Keyboard Shortcuts... -> Spotlight -> Show Finder search window -> Change to Command + Option + Space"
echo "Optimize."
echo "Oepn System Settings -> Accessibility -> Enable 'Reduce motion' and 'Reduce transparency'"
echo "Oepn System Settings -> Spotlight -> Disable all without Applications"
sudo pmset -c disablesleep 0