osx: New background for .dmg package.

The old background was kind of ugly and it's nice to have a new look
for version 3. Also tweak the positions of icons and the window size.
This commit is contained in:
Simon Howard 2016-06-11 17:26:24 -04:00
parent 614a449d3c
commit b5d296d2ab
2 changed files with 5 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 222 KiB

View file

@ -36,7 +36,7 @@ on run argv
-- window options:
set bgfile to file "background.png" of theDisk
set the bounds of win to {200, 200, 717, 536}
set the bounds of win to {200, 200, 717, 545}
set icon size of icon view options of win to 96
set background picture of icon view options of win to bgfile
set toolbar visible of win to false
@ -48,10 +48,10 @@ on run argv
-- icon positions:
set position of file "README" of theDisk to {120, 250}
set position of file "Software License" of theDisk to {380, 250}
set position of file appName of theDisk to {70, 110}
set position of file "Applications" of theDisk to {450, 110}
set position of file "README" of theDisk to {110, 220}
set position of file "Software License" of theDisk to {400, 220}
set position of file appName of theDisk to {110, 80}
set position of file "Applications" of theDisk to {400, 80}
eject theDisk
end tell