File: DMG-Layout.applescript.in

package info (click to toggle)
soundscaperenderer 0.6.0%2Bdfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 17,148 kB
  • sloc: cpp: 36,430; sh: 4,522; makefile: 847; ansic: 762; javascript: 593; python: 57
file content (18 lines) | stat: -rw-r--r-- 922 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
tell application "Finder"
	tell disk "SoundScape Renderer @PACKAGE_VERSION@"
		open
		set current view of container window to icon view
		set toolbar visible of container window to false
		set statusbar visible of container window to false
		set the bounds of container window to {400, 100, 820, 500}
		set theViewOptions to the icon view options of container window
		set arrangement of theViewOptions to not arranged
		set label position of theViewOptions to right
		set icon size of theViewOptions to 60
		set background picture of theViewOptions to file ".background:background.png"
		set position of item "Jack.webloc" of container window to {285, 60}
		set position of item "SoundScapeRenderer-@PACKAGE_VERSION@" of container window to {115, 135}
		set position of item "Applications" of container window to {115, 230}
		set position of item "Getting-Started.txt" of container window to {215, 320}
	end tell
end tell