-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-deps.sh
executable file
·76 lines (51 loc) · 2.25 KB
/
install-deps.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
#!/usr/bin/env bash
# up to you (me) if you want to run this as a file or copy paste at your leisure
# # https://github.com/jamiew/git-friendly
# # the `push` command which copies the github compare URL to my clipboard is heaven
# bash < <( curl https://raw.github.com/jamiew/git-friendly/master/install.sh)
# # https://rvm.io
# # rvm for the rubiess
# #Paul does: curl -L https://get.rvm.io | bash -s stable --ruby
# #I do this one as it adds dependencies as well
# \curl -L https://get.rvm.io | bash -s stable --rails --autolibs=enable
# # https://github.com/isaacs/nave
# # needs npm, obviously.
# # TODO: I think i'd rather curl down the nave.sh, symlink it into /bin and use that for initial node install.
# npm install -g nave
# # homebrew!
# # you need the code CLI tools YOU FOOL.
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# https://github.com/rupa/z
# z, oh how i love you
mkdir ~/code
cd ~/code
git clone https://github.com/rupa/z.git
chmod +x ~/code/z/z.sh
# also consider moving over your current .z file if possible. it's painful to rebuild :)
# z binary is already referenced from .bash_profile
# https://github.com/dronir/SpotifyControl
# Spotify Controll Script
# cd ~/code
# git clone git://github.com/dronir/SpotifyControl.git
# https://github.com/jeroenbegyn/VLCControl
# VLC Controll Script
# cd ~/code
# git clone git://github.com/jeroenbegyn/VLCControl.git
# my magic photobooth symlink -> dropbox. I love it.
# first move Photo Booth folder out of Pictures
# then start Photo Booth. It'll ask where to put the library.
# put it in Dropbox/public
# now you can record photobooth videos quickly and they upload to dropbox DURING RECORDING
# then you grab public URL and send off your video message in a heartbeat.
# for the c alias (syntax highlighted cat)
# sudo easy_install Pygments
# chrome canary as default
# on a mac you can set chrome canary as your default inside of Safari preferences :)
# Check gems are up to date without installing documentation
# sudo gem update --system --no-document
# install gem dependencies
# gem install haml
# gem install scss-lint
# Set symlink for Sublime Text 2
# rm ~/bin/subl
# ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" ~/bin/subl