0
폴더의 '축소판. *'파일을 아이콘으로 폴더에 자동으로 적용하는 서비스를 만들려고합니다. 여기에 this answer을 사용하고 있지만 일부 수정이 이루어졌습니다.Automator Service - 폴더의 축소판 파일을 찾고 적용하십시오.
for 루프로 감싸었지만이 문제를 해결하기 위해 'icon ='행을 수정하는 데 문제가 있습니다.
for f in "[email protected]"
do
# Sets an icon on file or directory
# Usage setIcon.sh iconimage.jpg /path/to/[file|folder]
set iconSource to do shell script "find $f -name thumbnail*"
set iconDestination to "$f"
icon="/tmp" & $iconSource <-----------------------------------------------
rsrc=/tmp/icon.rsrc
# Create icon from the iconSource
cp $iconSource $icon
# Add icon to image file, meaning use itself as the icon
sips -i $icon
# Take that icon and put it into a rsrc file
DeRez -only icns $icon > $rsrc
# Apply the rsrc file to
SetFile -a C $iconDestination
if [ -f $iconDestination ]; then
# Destination is a file
Rez -append $rsrc -o $iconDestination
elif [ -d $iconDestination ]; then
# Destination is a directory
# Create the magical Icon\r file
touch $iconDestination/$'Icon\r'
Rez -append $rsrc -o $iconDestination/Icon?
SetFile -a V $iconDestination/Icon?
fi
rm $rsrc $icon
done