Skip to content

Instantly share code, notes, and snippets.

@frankrausch
Last active March 22, 2019 15:26
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 frankrausch/ff748f853e1b79db38440a0e31553833 to your computer and use it in GitHub Desktop.
Save frankrausch/ff748f853e1b79db38440a0e31553833 to your computer and use it in GitHub Desktop.
Alfred Workflow AppleScript to create an empty file in the current Finder window
on alfred_script(q)
set title to "Untitled.txt"
if q is not equal to "" then set title to q
tell application "Finder" to make new file at (the target of the front window) as alias with properties {name: title}
end alfred_script
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment