Advertisement
opexxx

mac_osx_setup.sh

Feb 19th, 2014
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.12 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. mkdir ~/getmacapps_temp
  4. cd ~/getmacapps_temp
  5.  
  6. # Installing iterm2
  7. curl -L -o iTerm2.zip "http://www.iterm2.com/downloads/stable/iTerm2_v1_0_0.zip"
  8. unzip iTerm2.zip
  9. mv iTerm.app /Applications
  10. rm iTerm2.zip
  11.  
  12. # Installing flux
  13. curl -L -O "https://justgetflux.com/mac/Flux.zip"
  14. unzip Flux.zip
  15. mv Flux.app /Applications
  16. rm Flux.zip
  17.  
  18. # Installing CodeKit
  19. curl -L -o codekit.zip "http://incident57.com/codekit/files/codekit-8403.zip"
  20. unzip codekit.zip
  21. mv "CodeKit.app" /Applications
  22. rm codekit.zip
  23.  
  24. # Installing Transmit
  25. curl -L -o Transmit.zip "http://www.panic.com/transmit/d/Transmit%204.4.5.zip"
  26. unzip Transmit.zip
  27. mv "Transmit.app" /Applications
  28. rm Transmit.zip
  29.  
  30. # Installing Tower
  31. curl -L -o tower.zip "http://www.git-tower.com/download"
  32. unzip tower.zip
  33. mv "Tower.app" /Applications
  34. rm tower.zip
  35.  
  36. # Installing Postgres.app
  37. curl -L -o postgres.zip "http://postgresapp.com/download"
  38. unzip postgres.zip
  39. mv "Postgres.app" /Applications
  40. rm postgres.zip
  41.  
  42. # Installing Synergy
  43. curl -L -o synergy.dmg "http://synergy-foss.org/download/?file=synergy-1.4.15-MacOSX108-x86_64.dmg"
  44. hdiutil mount synergy.dmg
  45. cp -R "/Volumes/Synergy/Synergy.app" /Applications
  46. hdiutil unmount "/Volumes/Synergy"
  47. rm synergy.dmg
  48.  
  49. # Installing Notational Velocity
  50. curl -L -O "http://notational.net/NotationalVelocity.zip"
  51. unzip NotationalVelocity.zip
  52. mv "Notational Velocity.app" /Applications
  53. rm NotationalVelocity.zip
  54.  
  55. # Installing Path Finder 6
  56. curl -L -o PathFinder6.zip "http://cocoatech.com/pathfinder/download"
  57. unzip PathFinder6.zip
  58. mv "Path Finder.app" /Applications
  59. rm PathFinder6.zip
  60.  
  61. # Installing unison 2
  62. curl -L -o Unison.zip "http://www.panic.com/Unison/d/Unison%202.1.10.zip"
  63. unzip Unison.zip
  64. mv "Unison.app" /Applications
  65. rm Unison.zip
  66.  
  67. # Installing Coda
  68. curl -L -o Coda.zip "https://panic.com/coda/d/Coda%202.0.12.zip"
  69. unzip Coda.zip
  70. mv "Coda 2.app" /Applications
  71. rm Coda.zip
  72.  
  73. # Installing aText
  74. curl -L -o aText.dmg "http://www.trankynam.com/atext/downloads/aText.dmg"
  75. hdiutil mount aText.dmg -nobrowse
  76. cp -R "/Volumes/aText/aText.app" /Applications
  77. hdiutil unmount "/Volumes/aText"
  78. rm aText.dmg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement