Skip to content

Instantly share code, notes, and snippets.

View welby12's full-sized avatar

welby12

  • Burbank, CA
View GitHub Profile
@darwin
darwin / finder-paths.applescript
Last active August 31, 2022 21:59
This is a simple automation script to open a new Finder window with a pre-defined set of paths each in a new tab. Run it in `/Applications/Utilities/Script Editor.app` (hint: you can save the script as a standalone executable from there).
set paths to {"/Users/darwin/Music", "/Users/darwin/Desktop"}
-- initialize new Finder window
tell application "Finder"
activate
set finderWindow to make new Finder window
set toolbar visible of finderWindow to true
end tell
-- open all paths as new tabs