-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
macOS GitHub Action now runs Apple Script to set appearance of the DM…
…G in Finder. Also creates the Applications directory alias.
- Loading branch information
1 parent
3d13cd8
commit 4f82197
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
tell application "Finder" | ||
tell disk "WordSearchCreator" | ||
open | ||
|
||
set the bounds of container window to {100, 100, 650, 425} | ||
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 arrangement of icon view options of container window to not arranged | ||
set background picture of icon view options of container window to file ".background:background.png" | ||
make new alias to POSIX file "/Applications" at POSIX file "/Volumes/WordSearchCreator/" | ||
set position of item "Word Search Creator.app" of container window to {145, 180} | ||
set position of item "Applications" of container window to {410, 180} | ||
|
||
close | ||
end tell | ||
end tell |