Puedo ofrecerte 3 opciones:
Opción 1.
Creo que la alternativa más popular a Finder es Path Finder y tiene la función de "nuevo archivo".
Opción 2.
Si buscas en App Store con "New file"
, encontrarás algunas extensiones de Finder que hacen esto.
Tal vez sugiera:
Realmente no he probado muchos de estos, así que no sé si este es el mejor o no.
Opción 3.
Me hice este applecript:
EstopodríaseractivadousandoAlfredocasicualquiercosaqueadmitalosarchivosdetexto.
SeabriráunaventanadediálogoquelepediráunnombredearchivoycuandopresioneEntrar,elnuevoarchivosecolocaráenelbuscadoractualoenlacarpetaBuscadorderuta.SerestringeparacontinuarsolosiPathFinderoFindereslaaplicaciónactiva.
- Este es el icono que uso en el script (no es que sea importante ni nada ...)
- Si no estaba claro, en el código la ruta al icono es la raíz de la carpeta de usuario:
~/new-file.icns
y se define en la variable iconfile
.
if application "Path Finder" is frontmost then
tell application "Path Finder"
set currentPath to the path of the target of the front finder window
end tell
makeNewFile( currentPath )
else if application "Finder" is frontmost then
tell application "Finder"
set currentPath to (folder of the front window) as alias
end tell
makeNewFile( currentPath )
end if
on makeNewFile( currentPath )
set userPath to POSIX path of (path to home folder)
set iconfile to POSIX file (userPath & "new-file.icns") as alias
display dialog "For instance:
My File.txt, index.html, Markdown file.md" with title "Create a new file..." default answer "" with icon iconfile
set fileName to text returned of result
tell application "Finder"
make file at currentPath with properties {name:fileName}
end tell
end makeNewFile