2014-09-01 53 views

回答

1

在OS X上看/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/icns文件开头com.apple

不是“官方”来源,所以不要在Mac App Store应用程序中使用它。

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 [email protected]; >> Thanks.txt;