-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall
More file actions
executable file
·35 lines (24 loc) · 1.21 KB
/
install
File metadata and controls
executable file
·35 lines (24 loc) · 1.21 KB
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
#!/bin/bash
source common/functions.sh
# Create your here: http://patorjk.com/software/taag/#p=display&f=Graffiti&t=Type%20Something%20
msg ' __ __ __ __ _____ ______ ______ ______ __ __ ______ ______ '
msg '/\ "-./ \ /\ \_\ \ /\ __-. /\ __ \ /\__ _\ /\ ___\ /\ \ /\ \ /\ ___\ /\ ___\ '
msg '\ \ \-./\ \ \ \____ \ \ \ \/\ \ \ \ \/\ \ \/_/\ \/ \ \ __\ \ \ \ \ \ \____ \ \ __\ \ \___ \ '
msg ' \ \_\ \ \_\ \/\_____\ \ \____- \ \_____\ \ \_\ \ \_\ \ \_\ \ \_____\ \ \_____\ \/\_____\ '
msg ' \/_/ \/_/ \/_____/ \/____/ \/_____/ \/_/ \/_/ \/_/ \/_____/ \/_____/ \/_____/ '
msg ' '
OSX=$(test "`uname`" == "Darwin" && echo "x")
if [[ -d "$HOME/Dropbox/dotfiles" ]]; then
msg_checking "Checking dotfiles directory"
else
msg_install "Cloning" "git@github.com:dancasttro/dotfiles.git"
git clone git@github.com:dancasttro/dotfiles.git $HOME/dotfiles
ok "OK"
fi
sh brew/global.sh
sh node/global.sh
sh ruby/global.sh
sh sublime/global.sh
sh common/dotfiles.sh
sh zsh/global.sh
sh vim/global.sh