Como me encontré haciendo el truco Folder
una y otra vez, terminé creando un script de bash para automatizar el cambio de nombre de la cadena en /System/Library/CoreServices/Finder.app/Contents/Resources/English.lproj/InfoPlist.strings
.
- Guárdalo como, por ejemplo, %código%
- Hazlo ejecutable:
finder-folders-first.sh
- Ejecutar con permisos de root:
chmod +x 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!
La última línea reinicia el Finder. Para hacer lo mismo desde la GUI, presione Alt + clic derecho en el icono del Finder en el Dock y seleccione Relanzar .
Ahora, en el Finder, haga clic en la columna Tipo una / dos veces para que las carpetas aparezcan como primera / última.
Esto funciona en Mavericks y Yosemite, pero puede que no funcione en versiones posteriores.