ตั้งแต่ผมได้พบว่าตัวเองทำเคล็ดลับซ้ำแล้วซ้ำอีกฉันสิ้นสุดขึ้นการสร้างสคริปต์ทุบตีเพื่อทำให้การเปลี่ยนชื่อของสตริงในFolder
/System/Library/CoreServices/Finder.app/Contents/Resources/English.lproj/InfoPlist.strings
- บันทึกเป็นเช่น
finder-folders-first.sh
- ทำให้ปฏิบัติการ:
chmod +x finder-folders-first.sh
- รันด้วยการอนุญาตรูท:
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!
บรรทัดสุดท้ายรีสตาร์ท Finder ที่จะทำในสิ่งเดียวกันจากการกดกุย Alt + คลิกขวาที่ไอคอน Finder ใน Dock Relaunchและเลือก
ตอนนี้ใน Finder ให้คลิกคอลัมน์ชนิดหนึ่งครั้ง / สองครั้งเพื่อให้โฟลเดอร์อยู่ในรายการเป็นครั้งแรก / ครั้งสุดท้าย
สิ่งนี้ใช้ได้ใน Mavericks และ Yosemite แต่อาจไม่สามารถใช้งานได้ในรุ่นต่อมา