Eu tenho feito assim:
- Abra o fluxo de trabalho e escolha criar um novo aplicativo
- Na primeira etapa , use Obter itens do Finder especificados
- Na segunda etapa , use Executar o AppleScript
Coloque este código dentro:
on run {input, parameters}
if (input as string) ends with ":" then
if (list disks) contains (((input as string)'s characters 1 thru -2) as string) then
try
tell application "Finder"
eject input
end tell
end try
else
try
tell application "Finder"
move input to the trash
end tell
end try
end if
else
try
tell application "Finder"
move input to the trash
end tell
end try
end if
return 1
end run
E é isso!
Salve como um aplicativo em sua área de trabalho. Você pode alterar o ícone para se parecer com a lixeira.
Não é perfeito, no entanto. O ícone não será alterado quando a bandeja estiver cheia ou vazia e também não houver opções de menu de contexto. Mas é gratuito e funciona bem para excluir arquivos e desmontar discos.
Estou pensando em pesquisar uma maneira de fazer isso totalmente operacional, mas talvez no futuro próximo ...