forked from shumatech/BOSSA
-
Notifications
You must be signed in to change notification settings - Fork 3
/
dmgwin.osa
21 lines (21 loc) · 1.03 KB
/
dmgwin.osa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
tell application "Finder"
tell disk "BOSSA"
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, 893, 432}
set theViewOptions to the icon view options of container window
set arrangement of theViewOptions to not arranged
set icon size of theViewOptions to 64
set text size of theViewOptions to 16
set background picture of theViewOptions to file ".background:background.png"
set position of item "BOSSA" of container window to {220, 40}
set position of item "bossac" of container window to {220, 150}
set position of item "bossash" of container window to {220, 250}
set position of item "Applications" of container window to {420, 40}
set position of item "bin" of container window to {420, 200}
update without registering applications
delay 2
end tell
end tell