Nuevo archivo .txt

Con la App Atajos crear un nuevo Apple Script

tell application "Finder"
try
-- Intenta obtener la carpeta de la ventana que tienes al frente
set currentPath to (target of front window) as alias
on error
-- Si no hay ventanas abiertas, lo crea en el Escritorio
set currentPath to (path to desktop folder) as alias
end try
set baseName to "nuevo"
set fileExt to ".txt"
set fileName to baseName & fileExt
set counter to 2
repeat while (exists file fileName of currentPath)
set fileName to baseName & " " & counter & fileExt
set counter to counter + 1
end repeat
set newFile to make new file at currentPath with properties {name:fileName}
reveal newFile
end tell
¿Cómo se usa?
Opcion 1
Puedes asignar un shortcut similar al de crear carpeta nueva que viene por default (agrega option)
Command + Shift + Option + N
Opcion 2
Click derecho sobre una carpeta o archivo y elegir en el Menú de acciones rápidas / Nuevo documento de texto .txt (tu puedes cambiar el nombre)

