Como me he encontrado haciendo el Folder
truco una y otra vez, terminé creando un script bash para automatizar el cambio de nombre de la cadena /System/Library/CoreServices/Finder.app/Contents/Resources/English.lproj/InfoPlist.strings
.
- Guárdelo como p. Ej.
finder-folders-first.sh
- Hazlo ejecutable:
chmod +x finder-folders-first.sh
- Ejecutar con permisos 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!
La última línea reinicia Finder. Para hacer lo mismo desde la GUI, presione Alt + clic derecho en el icono del Finder en el Dock y seleccione Relaunch.
Ahora, en el Finder, haga clic en el tipo de columna, una vez / dos veces para que las carpetas que aparecen como primer / último.
Esto funciona en Mavericks y Yosemite, pero podría no funcionar en versiones posteriores.