From a8079a0a6615fc7d7fd4bc17aaa1aa2b6149bad6 Mon Sep 17 00:00:00 2001 From: pmichaud Date: Tue, 28 Aug 2012 00:41:48 -0500 Subject: Move build/binary/darwin_dmg to ports/ . --- ports/darwin_dmg/adjust_installation_window.scpt | 37 ++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 ports/darwin_dmg/adjust_installation_window.scpt (limited to 'ports/darwin_dmg/adjust_installation_window.scpt') diff --git a/ports/darwin_dmg/adjust_installation_window.scpt b/ports/darwin_dmg/adjust_installation_window.scpt new file mode 100644 index 0000000..fa29745 --- /dev/null +++ b/ports/darwin_dmg/adjust_installation_window.scpt @@ -0,0 +1,37 @@ +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 -- cgit v1.1