JAL-3393 Added version number to DMG Volume name. New jalview_dmg_DS_Store and docume...
[jalview.git] / utils / install4j / set_relative_dmg_background_image.applescript
1 on run (volumeName)
2         tell application "Finder"
3                 tell disk (volumeName as string)
4                         open
5
6                         set dsStore to "\"" & "/Volumes/" & volumeName & "/" & ".DS_STORE\""
7                         set opts to the icon view options of container window                   
8                         set background picture of opts to file ".background:jalview_dmg_background.png"
9                         
10                 end tell
11         end tell
12 end run