Skip to content

Instantly share code, notes, and snippets.

@th507
Last active February 19, 2021 07:05
Show Gist options
  • Save th507/190144d143cc05bd779ff1867b5f0f48 to your computer and use it in GitHub Desktop.
Save th507/190144d143cc05bd779ff1867b5f0f48 to your computer and use it in GitHub Desktop.
Toggle Finder (on mac)
appName = "Finder"
app = Application(appName)
if (!app.running()) {
app.activate()
}
else {
if (! app.visible()) {
app.activate()
}
else {
app.visible = false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment