Advertisement
opexxx

mac_osc_setupAPPS.sh

Feb 19th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 11.19 KB | None | 0 0
  1. !/bin/bash
  2. #curl -s http://getmacapps.com/raw/1fzo2ve0cknlbt | sh
  3. mkdir ~/getmacapps_temp
  4. cd ~/getmacapps_temp
  5.  
  6. # Installing Chrome
  7. curl -L -O "https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg"
  8. hdiutil mount googlechrome.dmg
  9. cp -R "/Volumes/Google Chrome/Google Chrome.app" /Applications
  10. hdiutil unmount "/Volumes/Google Chrome"
  11. rm googlechrome.dmg
  12.  
  13. # Installing Firefox
  14. curl -L -o Firefox.dmg "http://download.mozilla.org/?product=firefox-latest&os=osx&lang=en-US"
  15. hdiutil mount Firefox.dmg
  16. cp -R "/Volumes/Firefox/Firefox.app" /Applications
  17. hdiutil unmount "/Volumes/Firefox"
  18. rm Firefox.dmg
  19.  
  20. # Installing Handbrake
  21. curl -L -o HandBrake.dmg "http://sourceforge.net/projects/handbrake/files/0.9.9/HandBrake-0.9.9-MacOSX.6_GUI_x86_64.dmg/download"
  22. hdiutil mount HandBrake.dmg -mountpoint /Volumes/HandBrake
  23. cp -R "/Volumes/HandBrake/HandBrake.app" /Applications
  24. hdiutil unmount "/Volumes/HandBrake"
  25. rm HandBrake.dmg
  26.  
  27. # Installing VLC Player
  28. curl -L -o vlc.dmg "http://get.videolan.org/vlc/2.1.1/macosx/vlc-2.1.1.dmg"
  29. hdiutil mount vlc.dmg -mountpoint /Volumes/vlc
  30. cp -R "/Volumes/vlc/VLC.app" /Applications
  31. hdiutil unmount "/Volumes/vlc"
  32. rm vlc.dmg
  33.  
  34. # Installing Transmission
  35. curl -L -o Transmission.dmg "http://download.transmissionbt.com/files/Transmission-2.82.dmg"
  36. hdiutil mount Transmission.dmg
  37. cp -R "/Volumes/Transmission/Transmission.app" /Applications
  38. hdiutil unmount "/Volumes/Transmission"
  39. rm Transmission.dmg
  40.  
  41. # Installing Skype
  42. curl -L -O "http://www.skype.com/go/getskype-macosx.dmg"
  43. hdiutil mount getskype-macosx.dmg
  44. cp -R "/Volumes/Skype/Skype.app" /Applications
  45. hdiutil unmount "/Volumes/Skype"
  46. rm getskype-macosx.dmg
  47.  
  48. # Installing Adium X
  49. curl -L -o Adium.dmg "http://downloads.sourceforge.net/project/adium/Adium_1.5.8.dmg"
  50. hdiutil mount Adium.dmg -mountpoint /Volumes/Adium
  51. cp -R "/Volumes/Adium/Adium.app" /Applications
  52. hdiutil unmount "/Volumes/Adium"
  53. rm Adium.dmg
  54.  
  55. # Installing Dropbox
  56. curl -L -o Dropbox.dmg "https://www.dropbox.com/download?plat=mac"
  57. hdiutil mount Dropbox.dmg
  58. cp -R "/Volumes/Dropbox Installer/Dropbox.app" /Applications
  59. hdiutil unmount "/Volumes/Dropbox Installer"
  60. rm Dropbox.dmg
  61.  
  62. # Installing Google Drive
  63. curl -L -O "https://dl-ssl.google.com/drive/installgoogledrive.dmg"
  64. hdiutil mount installgoogledrive.dmg
  65. cp -R "/Volumes/Install Google Drive/Google Drive.app" /Applications
  66. hdiutil unmount "/Volumes/Install Google Drive"
  67. rm installgoogledrive.dmg
  68.  
  69. # Installing caffeine
  70. curl -L -o Caffeine.zip "http://download.lightheadsw.com/download.php?software=caffeine"
  71. unzip Caffeine.zip
  72. mv Caffeine.app /Applications
  73. rm Caffeine.zip
  74.  
  75. # Installing Sublime Text 2
  76. echo "Installing Sublime Text 2"
  77. curl -L -o "Sublime Text 2.0.1.dmg" "http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0.2.dmg"
  78. hdiutil mount "Sublime Text 2.0.1.dmg"
  79. cp -R "/Volumes/Sublime Text 2/Sublime Text 2.app" /Applications
  80. hdiutil unmount "/Volumes/Sublime Text 2/Sublime Text 2.app"
  81. rm "Sublime Text 2.0.1.dmg"
  82.  
  83. # Installing iterm2
  84. curl -L -o iTerm2.zip "http://www.iterm2.com/downloads/stable/iTerm2_v1_0_0.zip"
  85. unzip iTerm2.zip
  86. mv iTerm.app /Applications
  87. rm iTerm2.zip
  88.  
  89. # Installing Sequel Pro
  90. curl -L -o sequel-pro.dmg "https://sequel-pro.googlecode.com/files/sequel-pro-1.0.2.dmg"
  91. hdiutil mount sequel-pro.dmg
  92. cp -R "/Volumes/Sequel Pro 1.0.2/Sequel Pro.app" /Applications
  93. hdiutil unmount "/Volumes/Sequel Pro 1.0.2"
  94. rm sequel-pro.dmg
  95.  
  96. # Installing Source Tree
  97. curl -L -o SourceTree.dmg "http://downloads.atlassian.com/software/sourcetree/SourceTree_1.7.4.1.dmg"
  98. hdiutil mount SourceTree.dmg
  99. cp -R "/Volumes/SourceTree/SourceTree.app" /Applications
  100. hdiutil unmount "/Volumes/SourceTree"
  101. rm SourceTree.dmg
  102.  
  103. # Installing FileZilla
  104. curl -L -o Filezilla.app.tar.bz2 "http://sourceforge.net/projects/filezilla/files/FileZilla_Client/3.7.3/FileZilla_3.7.3_i686-apple-darwin9.app.tar.bz2"
  105. tar -zxvf Filezilla.app.tar.bz2
  106. mv FileZilla.app /Applications
  107. rm Filezilla.app.tar.bz2
  108.  
  109. # Installing GitHub
  110. curl -L -o mac_GitHub.zip "https://central.github.com/mac/latest"
  111. unzip mac_GitHub.zip
  112. mv GitHub.app /Applications
  113. rm mac_GitHub.zip
  114.  
  115. # Installing flux
  116. curl -L -O "https://justgetflux.com/mac/Flux.zip"
  117. unzip Flux.zip
  118. mv Flux.app /Applications
  119. rm Flux.zip
  120.  
  121. # Installing LibreOffice
  122. curl -L -o LibreOffice.dmg "http://download.documentfoundation.org/libreoffice/stable/4.1.3/mac/x86/LibreOffice_4.1.3_MacOS_x86.dmg" -H "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36"
  123. hdiutil mount LibreOffice.dmg
  124. cp -R "/Volumes/LibreOffice/LibreOffice.app" /Applications
  125. hdiutil unmount "/Volumes/LibreOffice"
  126. rm LibreOffice.dmg
  127.  
  128. # Installing OpenOffice
  129. curl -L -o OpenOffice.dmg "http://sourceforge.net/projects/openofficeorg.mirror/files/4.0.1/binaries/en-US/Apache_OpenOffice_4.0.1_MacOS_x86_install_en-US.dmg"
  130. hdiutil mount OpenOffice.dmg
  131. cp -R "/Volumes/OpenOffice/OpenOffice.app" /Applications
  132. hdiutil unmount "/Volumes/OpenOffice"
  133. rm OpenOffice.dmg
  134.  
  135. # Installing Cyberduck
  136. curl -L -o Cyberduck.zip "https://update.cyberduck.io/Cyberduck-4.4.3.zip"
  137. unzip Cyberduck.zip
  138. mv Cyberduck.app /Applications
  139. rm Cyberduck.zip
  140.  
  141. # Installing Audacity
  142. curl -L -o audacity.dmg "http://audacity.googlecode.com/files/audacity-macosx-ub-2.0.5.dmg"
  143. hdiutil mount audacity.dmg
  144. cp -R "/Volumes/Audacity 2.0.5/Audacity" /Applications/Audacity
  145. hdiutil unmount "/Volumes/Audacity 2.0.5"
  146. rm audacity.dmg
  147.  
  148. # Installing Grand Persepective
  149. curl -L -o GrandPerspective.dmg "http://sourceforge.net/projects/grandperspectiv/files/grandperspective/1.5.1/GrandPerspective-1_5_1.dmg/download"
  150. hdiutil mount GrandPerspective.dmg
  151. cp -R "/Volumes/GrandPerspective 1.5.1/GrandPerspective.app" /Applications
  152. hdiutil unmount "/Volumes/GrandPerspective 1.5.1"
  153. rm GrandPerspective.dmg
  154.  
  155. # Installing Coconut Battery
  156. curl -L -o coconutBattery.zip "http://www.coconut-flavour.com/downloads/coconutBattery_2.8.zip"
  157. unzip coconutBattery.zip
  158. mv "coconutBattery.app" /Applications
  159. rm coconutBattery.zip
  160.  
  161. # Installing Gimp
  162. curl -L -o gimp.dmg "ftp://ftp.gimp.org/pub/gimp/v2.8/osx/gimp-2.8.4-nopython-dmg-1.dmg"
  163. hdiutil mount gimp.dmg
  164. cp -R "/Volumes/GIMP/GIMP.app" /Applications
  165. hdiutil unmount "/Volumes/GIMP"
  166. rm gimp.dmg
  167.  
  168. # Installing CodeKit
  169. curl -L -o codekit.zip "http://incident57.com/codekit/files/codekit-8403.zip"
  170. unzip codekit.zip
  171. mv "CodeKit.app" /Applications
  172. rm codekit.zip
  173.  
  174. # Installing Transmit
  175. curl -L -o Transmit.zip "http://www.panic.com/transmit/d/Transmit%204.4.5.zip"
  176. unzip Transmit.zip
  177. mv "Transmit.app" /Applications
  178. rm Transmit.zip
  179.  
  180. # Installing Tower
  181. curl -L -o tower.zip "http://www.git-tower.com/download"
  182. unzip tower.zip
  183. mv "Tower.app" /Applications
  184. rm tower.zip
  185.  
  186. # Installing Last.fm Scrobbler
  187. curl -L -o Last.fm.zip "http://www.last.fm/download/mac"
  188. unzip Last.fm.zip
  189. mv "Last.fm.app" /Applications
  190. rm Last.fm.zip
  191.  
  192. # Installing TinyGrab
  193. curl -L -o TinyGrab.dmg "http://bit.ly/weXCIz"
  194. hdiutil mount TinyGrab.dmg
  195. cp -R "/Volumes/TinyGrab/TinyGrab.app" /Applications
  196. hdiutil unmount "/Volumes/TinyGrab"
  197. rm TinyGrab.dmg
  198.  
  199. # Installing Alfred
  200. curl -L -o Alfred.zip "http://cachefly.alfredapp.com/Alfred_2.1.1_227.zip"
  201. unzip Alfred.zip
  202. mv "Alfred 2.app" /Applications
  203. rm Alfred.zip
  204.  
  205. # Installing Postgres.app
  206. curl -L -o postgres.zip "http://postgresapp.com/download"
  207. unzip postgres.zip
  208. mv "Postgres.app" /Applications
  209. rm postgres.zip
  210.  
  211. # Installing Skim
  212. curl -L -o Skim.dmg "http://sourceforge.net/projects/skim-app/files/Skim/Skim-1.4.6/Skim-1.4.6.dmg/download"
  213. hdiutil mount Skim.dmg
  214. cp -R "/Volumes/Skim/Skim.app" /Applications
  215. hdiutil unmount "/Volumes/Skim"
  216. rm Skim.dmg
  217.  
  218. # Installing Synergy
  219. curl -L -o synergy.dmg "http://synergy-foss.org/download/?file=synergy-1.4.15-MacOSX108-x86_64.dmg"
  220. hdiutil mount synergy.dmg
  221. cp -R "/Volumes/Synergy/Synergy.app" /Applications
  222. hdiutil unmount "/Volumes/Synergy"
  223. rm synergy.dmg
  224.  
  225. # Installing quicksilver
  226. curl -L -o Quicksilver.dmg "http://cdn.qsapp.com/com.blacktree.Quicksilver__16391.dmg"
  227. hdiutil mount Quicksilver.dmg
  228. cp -R "/Volumes/Quicksilver/Quicksilver.app" /Applications
  229. hdiutil unmount "/Volumes/Quicksilver"
  230. rm Quicksilver.dmg
  231.  
  232. # Installing Notational Velocity
  233. curl -L -O "http://notational.net/NotationalVelocity.zip"
  234. unzip NotationalVelocity.zip
  235. mv "Notational Velocity.app" /Applications
  236. rm NotationalVelocity.zip
  237.  
  238. # Installing Carbon Copy Cloner
  239. curl -L -o ccc.zip "http://files.bombich.com/ccc-3.5.4.zip" -H "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.93 Safari/537.36"
  240. unzip ccc.zip
  241. mv "Carbon Copy Cloner.app" /Applications
  242. rm ccc.zip
  243.  
  244. # Installing Skitch
  245. curl -L -o Skitch.zip "http://evernote.com/download/get.php?file=SkitchMac"
  246. unzip Skitch.zip
  247. mv "Skitch.app" /Applications
  248. rm Skitch.zip
  249.  
  250. # Installing Evernote
  251. curl -L -o Evernote.dmg "http://evernote.com/download/get.php?file=EvernoteMac"
  252. yes | hdiutil mount Evernote.dmg -nobrowse > /dev/null
  253. cp -R "/Volumes/Evernote/Evernote.app" /Applications
  254. hdiutil unmount "/Volumes/Evernote"
  255. rm Evernote.dmg
  256.  
  257. # Installing NetNewsWire
  258. curl -L -o NetNewsWire.zip "https://updates.blackpixel.com/latest?app=nnw"
  259. unzip NetNewsWire.zip
  260. mv "NetNewsWire.app" /Applications
  261. rm NetNewsWire.zip
  262.  
  263. # Installing The Unarchiver
  264. curl -L -o TheUnarchiver.zip "http://theunarchiver.googlecode.com/files/TheUnarchiver3.9.1.zip"
  265. unzip TheUnarchiver.zip
  266. mv "The Unarchiver.app" /Applications
  267. rm TheUnarchiver.zip
  268.  
  269. # Installing Path Finder 6
  270. curl -L -o PathFinder6.zip "http://cocoatech.com/pathfinder/download"
  271. unzip PathFinder6.zip
  272. mv "Path Finder.app" /Applications
  273. rm PathFinder6.zip
  274.  
  275. # Installing unison 2
  276. curl -L -o Unison.zip "http://www.panic.com/Unison/d/Unison%202.1.10.zip"
  277. unzip Unison.zip
  278. mv "Unison.app" /Applications
  279. rm Unison.zip
  280.  
  281. # Installing Coda
  282. curl -L -o Coda.zip "https://panic.com/coda/d/Coda%202.0.12.zip"
  283. unzip Coda.zip
  284. mv "Coda 2.app" /Applications
  285. rm Coda.zip
  286.  
  287. # Installing Thunderbird
  288. curl -L -o Thunderbird.dmg "http://download.mozilla.org/?product=thunderbird-24.1.1&os=osx&lang=en-US"
  289. hdiutil mount Thunderbird.dmg -nobrowse
  290. cp -R "/Volumes/Thunderbird/Thunderbird.app" /Applications
  291. hdiutil unmount "/Volumes/Thunderbird"
  292. rm Thunderbird.dmg
  293.  
  294. # Installing Inkscape
  295. curl -L -o Inkscape.dmg "http://downloads.sourceforge.net/inkscape/Inkscape-0.48.2-1-SNOWLEOPARD.dmg"
  296. hdiutil mount Inkscape.dmg -nobrowse
  297. cp -R "/Volumes/Inkscape/Inkscape.app" /Applications
  298. hdiutil unmount "/Volumes/Inkscape"
  299. rm Inkscape.dmg
  300.  
  301. # Installing TextWrangler
  302. curl -L -o TextWrangler.dmg "http://ash.barebones.com/TextWrangler_4.5.3.dmg"
  303. hdiutil mount TextWrangler.dmg -nobrowse
  304. cp -R "/Volumes/TextWrangler 4.5.3/TextWrangler.app" /Applications
  305. hdiutil unmount "/Volumes/TextWrangler 4.5.3"
  306. rm TextWrangler.dmg
  307.  
  308. # Installing aText
  309. curl -L -o aText.dmg "http://www.trankynam.com/atext/downloads/aText.dmg"
  310. hdiutil mount aText.dmg -nobrowse
  311. cp -R "/Volumes/aText/aText.app" /Applications
  312. hdiutil unmount "/Volumes/aText"
  313. rm aText.dmg
  314.  
  315. # Installing Calibre
  316. curl -L -o calibre.dmg "http://status.calibre-ebook.com/dist/osx32"
  317. hdiutil mount calibre.dmg -nobrowse -mountpoint /Volumes/calibre/
  318. cp -R "/Volumes/calibre/calibre.app" /Applications
  319. hdiutil unmount "/Volumes/calibre"
  320. rm calibre.dmg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement