Aegisub/aegisub/packages/osx_dmg/dmg_set_style.applescript
Amar Takhar a067bd560d SVN Transition Step 3/7
1. cd aegisub/
  2. svn mv *cpp *h src/
  3. svn mv Makefile.am MatroskaParser.c auto4_perldata.inc bitmaps boost \
     changelog.txt config gl include libosxutil libresrc md5.c msvc mythes.cxx \
     mythes.hxx res.rc src/
  4. cd ..
  5. svn mv FFmpegSource2/ INSTALL Makefile.am README  acinclude.m4 \
     autogen.sh automation/ bin build configure.in desktop dummy.txt lib \
     libass/ m4macros/ packages/ po/ scripts/ universalchardet/ aegisub/
  6. mkdir -p docs/wiki_convert
  7. svn add docs/wiki_convert
  8. cd docs
  9. svn mv aegisub_convert_docs.pl convert.bat output wiki_convert/

* See r2749 for full description.

Originally committed to SVN as r2752.
2009-03-08 08:30:39 +00:00

42 lines
1.1 KiB
AppleScript

(*
This AppleScript customizes the appearance of the
disk image in which Inkscape is bundled on MacOS X
Author:
Jean-Olivier Irisson <jo.irisson@gmail.com>
Copyright 2006
Licensed under GNU General Public License
*)
tell application "Finder"
tell disk "@PKG_NAME_VOLUME@"
open
tell container window
set current view to icon view
set toolbar visible to false
set statusbar visible to false
set the bounds to {250, 250, 700, 600}
end tell
close
set opts to the icon view options of container window
tell opts
set icon size to 90
set arrangement to not arranged
end tell
set background picture of opts to file ".background:background.png"
set position of application file "@PKG_DIR@" to {133, 55}
set position of alias file "Applications" to {133, 250}
update without registering applications
tell container window
set the bounds to {250, 250, 700, 600}
set the bounds to {249, 250, 700, 600}
end tell
update without registering applications
end tell
--give the finder some time to write the .DS_Store file
delay 7
end tell