2014-09-01 55 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;