I really miss option of creating new text file in Mac OS in simple way like Windows offers on right click.

To bring it back, we will use Automator.

  1. Create Quick Action
  2. Change “any window” to “Finder”
  3. Change receives to “no input”
  4. Add “Run AppleScript” from library
  5. Paste the following script:
tell application "Finder"
    set txt to make new file at (the target of the front window) as alias with properties {name:"empty.txt"}
    select txt
end tell
  1. Save it as “New Text File” and close automator
  2. “New Text File” will be avaiable in Services menu when Finder is open

Sources:

That's it for this post, thanks for reading!