Skip to content

Instantly share code, notes, and snippets.

@brunoadacosta
Created August 12, 2014 18:17
Show Gist options
  • Save brunoadacosta/b8eae7f512a9a0491c9c to your computer and use it in GitHub Desktop.
Save brunoadacosta/b8eae7f512a9a0491c9c to your computer and use it in GitHub Desktop.
Install apps on osx
#!/bin/bash
mkdir ~/macapps_temp
cd ~/macapps_temp
# Installing Chrome
curl -L -O "https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg"
hdiutil mount -nobrowse googlechrome.dmg
cp -R "/Volumes/Google Chrome/Google Chrome.app" /Applications
hdiutil unmount "/Volumes/Google Chrome"
rm googlechrome.dmg
# Installing VLC Player
curl -L -o vlc.dmg "http://get.videolan.org/vlc/2.1.4/macosx/vlc-2.1.4.dmg"
hdiutil mount -nobrowse vlc.dmg -mountpoint /Volumes/vlc
cp -R "/Volumes/vlc/VLC.app" /Applications
hdiutil unmount "/Volumes/vlc"
rm vlc.dmg
# Installing Skype
curl -L -O "http://www.skype.com/go/getskype-macosx.dmg"
hdiutil mount -nobrowse getskype-macosx.dmg
cp -R "/Volumes/Skype/Skype.app" /Applications
hdiutil unmount "/Volumes/Skype"
rm getskype-macosx.dmg
# Installing Adium
curl -L -o Adium.dmg "http://downloads.sourceforge.net/project/adium/Adium_1.5.10.dmg"
hdiutil mount -nobrowse Adium.dmg -mountpoint /Volumes/Adium
cp -R "/Volumes/Adium/Adium.app" /Applications
hdiutil unmount "/Volumes/Adium"
rm Adium.dmg
# Installing Dropbox
curl -L -o Dropbox.dmg "https://www.dropbox.com/download?plat=mac"
hdiutil mount -nobrowse Dropbox.dmg
cp -R "/Volumes/Dropbox Installer/Dropbox.app" /Applications
hdiutil unmount "/Volumes/Dropbox Installer"
rm Dropbox.dmg
# Installing caffeine
curl -L -o Caffeine.zip "http://download.lightheadsw.com/download.php?software=caffeine"
unzip Caffeine.zip
mv Caffeine.app /Applications
rm Caffeine.zip
# Installing iterm2
curl -L -o iTerm2.zip "http://www.iterm2.com/downloads/stable/iTerm2_v2_0.zip"
unzip iTerm2.zip
mv iTerm.app /Applications
rm iTerm2.zip
# Installing Alfred
curl -L -o Alfred.zip "http://cachefly.alfredapp.com/Alfred_2.3_264.zip"
unzip Alfred.zip
mv "Alfred 2.app" /Applications
rm Alfred.zip
rm -rf ~/macapps_temp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment