-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·57 lines (35 loc) · 1.55 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
# Originally: http://lapwinglabs.com/blog/hacker-guide-to-setting-up-your-mac
if [ "$1" == "upgrade" ]; then
echo "upgrading and resetting system.."
command=upgrade
else
echo "installing/resetting system.."
command=install
fi
username=$(whoami)
################################################################### macOS tweaks
sh ./scripts/macos.sh
################################################################ macOS cli tools
echo "installing command line tools.."
xcode-select --install
####################################################################### Homebrew
sh ./scripts/homebrew.sh $command
####################################################################### dotfiles
sh ./scripts/dotfiles.sh
########################################################################### asdf
sh ./scripts/asdf.sh
############################################################################ SSH
sh ./scripts/ssh.sh
############################################################################ Git
sh ./scripts/git.sh
########################################################################## Files
echo "copying files.."
cp ./files/FiraMono-Regular.otf ~/Library/Fonts/
cp ./files/FiraMono-Bold.otf ~/Library/Fonts/
################################################################### Sublime Text
sh ./scripts/sublime_text.sh
########################################################################### done
echo "done!"
echo "....."
echo "uninstallable app list: ~/Sync/Library/dotfiles/uninstallable_apps.md"
echo "setup notes: ~/Sync/Library/dotfiles/notes.md"