Desde que me descobri fazendo o Folder
truque várias vezes, acabei criando um script bash para automatizar a renomeação da string /System/Library/CoreServices/Finder.app/Contents/Resources/English.lproj/InfoPlist.strings
.
- Salve como por exemplo
finder-folders-first.sh
- Torne executável:
chmod +x finder-folders-first.sh
- Execute com permissões de root:
sudo finder-folders-first.sh
#!/bin/bash
# Make folders sortable first in Finder
if [[ $EUID -ne 0 ]]; then
echo "Script must be run as root! Aborting."
exit 1
fi
cd /System/Library/CoreServices/Finder.app/Contents/Resources/English.lproj/
cp -i InfoPlist.strings InfoPlist_ORIGINAL-`date +%b-%d-%Y_%H_%M_%S`.strings
plutil -convert xml1 InfoPlist.strings
sed 's|<string>Folder</string>|<string> Folder</string>|' InfoPlist.strings > InfoPlist_PATCHED.strings
diff InfoPlist.strings InfoPlist_PATCHED.strings
if [ $? -eq 0 ]; then
echo File already patched! Exiting.
exit -1
else
echo Patching original file...
plutil -convert binary1 InfoPlist_PATCHED.strings -o InfoPlist.strings
fi
echo Restarting Finder...
killall Finder
echo Done!
A última linha reinicia o Finder. Para fazer o mesmo na GUI, pressione Alt + clique com o botão direito do mouse no ícone Finder no Dock e selecione Relaunch.
Agora, no Finder, clique na coluna Tipo uma vez / duas vezes para listar as pastas como primeiro / último.
Isso funciona no Mavericks e no Yosemite, mas pode não funcionar nas versões posteriores.