You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
972 B

  1. on run argv
  2. set diskImage to item 1 of argv
  3. tell application "Finder"
  4. tell disk diskImage
  5. open
  6. set current view of container window to icon view
  7. set toolbar visible of container window to false
  8. set statusbar visible of container window to false
  9. set the bounds of container window to {400, 100, 1000, 550}
  10. set theViewOptions to the icon view options of container window
  11. set arrangement of theViewOptions to not arranged
  12. set icon size of theViewOptions to 72
  13. set background picture of theViewOptions to file ".background:background.png"
  14. set position of item "Audacity" of container window to {170, 350}
  15. set position of item "Applications" of container window to {430, 350}
  16. close
  17. open
  18. update without registering applications
  19. end tell
  20. end tell
  21. end run