连接iOS设备时,iTunes始终显示正确的设备图标。 这些图标位于哪里?
谢谢!
答案 0 :(得分:1)
它们位于/Applications/iTunes.app/Contents/Resources/DeviceIcons.rsrc
但是我找不到10.x INTEL的RSRC编辑......反正我不认为你应该只拿苹果的图标;)[我不是律师]
答案 1 :(得分:1)
在OS X上,在/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/
中查找以icns
开头的com.apple
文件。
不是"官方"来源所以不要在Mac App Store应用程序中使用它。
答案 2 :(得分:0)
我创建了一个bash脚本,将桌面上的图标放在一个名为SystemIcons的文件夹中。在运行此操作之前,请确保您的桌面上没有任何这些文件:SystemIcons,Resources或Resources.zip。如果你这样做,他们将被替换。将以下脚本粘贴到终端以运行脚本(我试图使其用户友好)。请注意,如果您运行两次,它会说它移动了您的主文件夹的所有内容。我不知道为什么会这样做,因为我的主文件夹中的任何内容都没有受到任何影响:
clear; echo ‘Error, trying to access system file, please enter your password
so we can override this error’;
clear;
sudo cp -r /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources
~/Desktop/;
zip ~/Desktop/Resources *;
mkdir ~/Desktop/SystemIcons;
mv ~/Desktop/Resources.zip ~/Desktop/SystemIcons/;
mv ~/Desktop/SystemIcons/Resources.zip
~/Desktop/SystemIcons/DoubleClickToShowSystemIcons.zip;
cd ~/Desktop/SystemIcons/;
touch Summary.txt;
echo ‘You have run a command by CV Programming that has gathered the Mac OSX
system icons. They have been placed in this folder, Desktop/SystemIcons.
All you need to do is unzip the zip file.’ >> Summary.txt;
touch Thanks.txt;
touch Instructions.txt;
touch Technical.txt;
echo ‘ASSUMING RUN AS NORMAL: ran as superuser. Created
DoubleClickToShowSystemIcons.zip, SystemIcons, Technical.txt,
Summary.txt, Thanks.txt, and Instructions.txt’ >> Technical.txt;
echo ‘To view the system icons, just double click on the
DoubleClickToShowSystemIcons.zip file’ >> Instructions.txt;
sudo rm -R ~/Desktop/Resources;
echo ‘Thanks for using this script. If you have any suggestions, please send
them to CV Programming at cvprogrammingsoft@gmail.com; >> Thanks.txt;