forked from Hotell/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
execute-order-66.sh
executable file
·127 lines (102 loc) · 4.16 KB
/
execute-order-66.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
#!/usr/bin/env bash
###############################################################################
# UTILS: Check for required functions file
###############################################################################
if [ -e utils.sh ]; then
cd "$(dirname "${BASH_SOURCE[0]}")" \
&& . "utils.sh"
else
printf "\n ⚠️ ./utils.sh not found 💃🏾 First, you need to make utils function available \n"
exit 1
fi
###############################################################################
# CHECK: Bash version
###############################################################################
check_bash_version
###############################################################################
# CHECK: Internet
###############################################################################
chapter "Checking internet connection…"
check_internet_connection
###############################################################################
# PROMPT: SSH Key
###############################################################################
chapter 'Checking for SSH key…'
ssh_key_setup
###############################################################################
# INSTALL: Dependencies
###############################################################################
chapter "Installing Dependencies…"
# -----------------------------------------------------------------------------
# XCode
# -----------------------------------------------------------------------------
if type xcode-select >&- && xpath=$( xcode-select --print-path ) &&
test -d "${xpath}" && test -x "${xpath}" ; then
print_success_muted "Xcode already installed. Skipping."
else
step "Installing Xcode…"
xcode-select --install
print_success "Xcode installed!"
fi
if [ ! -d "$HOME/.bin/" ]; then
mkdir "$HOME/.bin"
fi
# -----------------------------------------------------------------------------
# Homebrew
# -----------------------------------------------------------------------------
if ! [ -x "$(command -v brew)" ]; then
step "Installing Homebrew…"
curl -fsS 'https://raw.githubusercontent.com/Homebrew/install/master/install' | ruby
export PATH="/usr/local/bin:$PATH"
print_success "Homebrew installed!"
else
print_success_muted "Homebrew already installed. Skipping."
fi
if brew list | grep -Fq brew-cask; then
step "Uninstalling old Homebrew-Cask…"
brew uninstall --force brew-cask
print_success "Homebrew-Cask uninstalled!"
fi
###############################################################################
# INSTALL: Apps and binaries && npm globals
###############################################################################
if [ -e brew.sh ]; then
cd "$(dirname "${BASH_SOURCE[0]}")" \
&& . "brew.sh"
else
printf "\n ⚠️ ./brew.sh not found 💃🏾 I cannot install apps and binaries bro! \n"
exit 1
fi
if [ -e npm.sh ]; then
cd "$(dirname "${BASH_SOURCE[0]}")" \
&& . "npm.sh"
else
printf "\n ⚠️ ./npm.sh not found 💃🏾 How can I install global npm packages when there is no npm.sh ? \n"
exit 1
fi
###############################################################################
# SETUP: Directories
###############################################################################
DIRECTORIES=(
$HOME/Projects/devel
$HOME/Projects/work
$HOME/Desktop/GIFs
)
step "Making directories…"
for dir in ${DIRECTORIES[@]}; do
mkd $dir
done
###############################################################################
# SETUP: MacOs defaults
###############################################################################
if [ -e .macos ]; then
cd "$(dirname "${BASH_SOURCE[0]}")" \
&& . ".macos"
else
printf "\n ⚠️ ./.macos not found 💃🏾 How can I setup your new Mac when ther is no /.macos ha? \n"
exit 1
fi
###############################################################################
# ⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️⚛️ 👀🔥
###############################################################################
e-order-66-done