Created
June 27, 2016 07:01
-
-
Save ooobo/b14149b20346225009fcc229a356c557 to your computer and use it in GitHub Desktop.
simply eject all the disks on macOS
This file contains hidden or 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
-- first close music app, then eject disks. | |
try | |
tell application "Swinsian" | |
quit | |
end tell | |
tell application "Finder" | |
eject the disks | |
display notification "Ejected all disks" | |
end tell | |
on error | |
display notification "Couldn't eject disks" | |
end try |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment