Skip to content

Instantly share code, notes, and snippets.

@ooobo
Created June 27, 2016 07:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ooobo/b14149b20346225009fcc229a356c557 to your computer and use it in GitHub Desktop.
Save ooobo/b14149b20346225009fcc229a356c557 to your computer and use it in GitHub Desktop.
simply eject all the disks on macOS
-- 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