aboutsummaryrefslogtreecommitdiff
path: root/build/binary/darwin_dmg/adjust_installation_window.scpt
diff options
context:
space:
mode:
authorpmichaud <pmichaud@pobox.com>2012-08-28 00:41:48 -0500
committerpmichaud <pmichaud@pobox.com>2012-08-28 00:41:48 -0500
commita8079a0a6615fc7d7fd4bc17aaa1aa2b6149bad6 (patch)
tree48ecd02b1eeaf914e3ffaf4e094473b0b1345e93 /build/binary/darwin_dmg/adjust_installation_window.scpt
parentc012d8b882480151d8eb7da92c4cca80d1d9b814 (diff)
Move build/binary/darwin_dmg to ports/ .
Diffstat (limited to 'build/binary/darwin_dmg/adjust_installation_window.scpt')
-rw-r--r--build/binary/darwin_dmg/adjust_installation_window.scpt37
1 files changed, 0 insertions, 37 deletions
diff --git a/build/binary/darwin_dmg/adjust_installation_window.scpt b/build/binary/darwin_dmg/adjust_installation_window.scpt
deleted file mode 100644
index fa29745..0000000
--- a/build/binary/darwin_dmg/adjust_installation_window.scpt
+++ /dev/null
@@ -1,37 +0,0 @@
-tell application "Finder"
- tell disk "Rakudo_Star"
- open
-
- set top_left_X to 100
- set top_left_Y to 100
- set bottom_right_X to 600
- set bottom_right_Y to 500
-
- tell container window
- set current view to icon view
- set toolbar visible to false
- set statusbar visible to false
- set bounds to { top_left_X, top_left_Y, bottom_right_X, bottom_right_Y }
- end tell
-
- make new alias file at container window to POSIX file "/Applications" with properties { name:"Applications" }
-
- set opts to the icon view options of container window
- tell opts
- set icon size to 128
- set text size to 16
- set arrangement to not arranged
- end tell
-
- set position of item "Rakudo_Star" to {120, 74}
- set position of item "Applications" to {360, 74}
- set position of item "HOW_TO_INSTALL.txt" to {120, 264}
-
- delay 5
- close
- delay 5
- open
- delay 5
-
- end tell
-end tell