-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbootstrap.sh
More file actions
executable file
·39 lines (33 loc) · 995 Bytes
/
bootstrap.sh
File metadata and controls
executable file
·39 lines (33 loc) · 995 Bytes
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
#!/usr/bin/env bash
echo ""
echo "--------------------------------------------------"
echo "Updating OSX and installing command line tools"
echo "--------------------------------------------------"
echo ""
./osx.sh
echo ""
echo "--------------------------------------------------"
echo "Installing homebrew with some packages"
echo "--------------------------------------------------"
echo ""
./brew.sh
echo ""
echo "--------------------------------------------------"
echo "Installing oh-my-zsh"
echo "--------------------------------------------------"
echo ""
./zsh.sh
echo ""
echo "--------------------------------------------------"
echo "Installing iterm themes"
echo "--------------------------------------------------"
echo ""
./iterm.sh
echo ""
echo "--------------------------------------------------"
echo "Copying dotfiles"
echo "--------------------------------------------------"
echo ""
cp -rf dot-files/ ~/
echo ""
echo "Done, make sure to apply the colors/fonts in iterm"