Як замінити іконки Yosemite на ті, що є у Mavericks?


14

Перед оновленням до Yosemite я хотів би створити резервну копію піктограм програм у Mavericks, оскільки нові іконки такі некрасиві .

Який найкращий спосіб зберегти повну копію старих значків системи від Mavericks?

ОНОВЛЕННЯ:

введіть тут опис зображення

Нарешті, я роблю це по одному за методом Юкі Ямашиної .


Піктограма Finder - це катастрофа. З рештою добре, imo.

Відповіді:


9

Після відповіді @ ohho, я написав швидкий сценарій, який допоможе вам заощадити зусилля з коригування кольору кожної піктограми. Цей сценарій також обробляє іконки папки Dropbox. Вам знадобляться утиліти командного рядка imagemagick та xcode, встановлені. Найкращий спосіб отримати і те, і інше - встановити домашню мову і потім запустити

brew install imagemagick

Ось сценарій. Я вирішив зменшити насиченість на -20% і відрегулювати відтінок, щоб зробити колір менш зеленим і синім.

#!/bin/bash

# List of system icons which need to be changed
sys_icons="ApplicationsFolderIcon.icns BurnableFolderIcon.icns \
DesktopFolderIcon.icns DeveloperFolderIcon.icns DocumentsFolderIcon.icns \
DownloadsFolder.icns GenericFolderIcon.icns GenericSharepoint.icns \
GroupFolder.icns LibraryFolderIcon.icns MovieFolderIcon.icns \
MusicFolderIcon.icns OpenFolderIcon.icns PicturesFolderIcon.icns \
PublicFolderIcon.icns ServerApplicationsFolderIcon.icns \
SitesFolderIcon.icns SystemFolderIcon.icns UsersFolderIcon.icns \
UtilitiesFolder.icns"

# Back up CoreTypes.bundle just in case and copy the icons to ~/folder_icons
cp -r /System/Library/CoreServices/CoreTypes.bundle ~/CoreTypes_BACKUP.bundle
mkdir ~/folder_icons
cd /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources
cp $sys_icons ~/folder_icons

# List of dropbox icons which need to be changed
dropbox_icons="DropboxFolderIconYosemite.icns DropboxAppFolderIconYosemite.icns \
DropboxPublicFolderIconYosemite.icns DropboxReadOnlySharedFolderIconYosemite.icns"

# Check if yosemite-ready dropbox is installed and copy the dropbox icons to ~/folder_icons
if [ -f "/Applications/Dropbox.app/Contents/Resources/DropboxFolderIconYosemite.icns" ]; then
    cd /Applications/Dropbox.app/Contents/Resources
    cp $dropbox_icons ~/folder_icons
fi

cd ~/folder_icons

# Change ownership of icns files to user
sudo chown `whoami` $sys_icons $dropbox_icons &> /dev/null

# Convert icns files to "iconset" folders containing png files
for icon in *.icns; do iconutil -c iconset "$icon"; done

# Use imagemagick to adjust saturation (-20%) and hue (+2%)
for icon in ./**/*.png; do mogrify -modulate 100,80,102 "$icon"; done

# Convert "iconset" folders back to icns files
for icon in *.iconset; do iconutil -c icns "$icon"; done

# Copy the modified system and dropbox icons back to their original bundles
sudo cp $sys_icons /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources
if [ -f "DropboxFolderIconYosemite.icns" ]; then
    cp $dropbox_icons /Applications/Dropbox.app/Contents/Resources
fi

# Set owner/group to root/wheel and delete extended attributes
cd /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources
sudo chown root $sys_icons
sudo chgrp wheel $sys_icons
sudo xattr -d com.apple.quarantine $sys_icons &> /dev/null

# Delete icon cache (restart necessary)
sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \; &> /dev/null
sudo find /private/var/folders/ -name com.apple.iconservices -exec rm -rf {} \; &> /dev/null

# Remove working directory
rm -rf ~/folder_icons

Збережіть це як скажіть '~ / folder_colour_adjuster.sh', а потім запустіть

sudo sh ~/folder_colour_adjuster.sh

Перезавантажте комп'ютер і насолоджуйтесь:

кінцеві результати


3
Я хотів би, щоб я міг проголосувати більше одного разу ;-)
ой

6

Як змінити колір значків системи Yosemite :

// Go to /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources folder
// where system icons are located.
$ cd /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/

// Backup the icns file for generic folder icon.
$ sudo cp GenericFolderIcon.icns GenericFolderIcon.org.icns

// Move the icns file to your home folder and go there.
$ sudo mv GenericFolderIcon.icns ~/
$ cd ~/

// Change file owner (from root to user).
$ sudo chown [user name] GenericFolderIcon.icns

// Open GenericFolderIcon.icns in Finder, then Preview is launched.
// Choose "Tools" => "Adjust Colors..." (shift+⌘+C), and adjust image's color as you want.
// In the following image, Saturation is decreased.
// Note that GenericFolderIcon.icns contains 10 images, and you should edit all of them.
// Save the file (⌘+S).

введіть тут опис зображення

// Locate the icns file to /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources folder.
$ cd /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/
$ sudo mv ~/GenericFolderIcon.icns ./

// Change file owner and group, and remove Extended Attributes.
$ sudo chown root GenericFolderIcon.icns
$ sudo chgrp wheel GenericFolderIcon.icns
$ sudo xattr -d com.apple.quarantine GenericFolderIcon.icns

// Clear the icon cache.
sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \;
sudo find /private/var/folders/ -name com.apple.iconservices -exec rm -rf {} \;

// Restart Mac.

Є приємний безкоштовний додаток для зміни значків, LiteIcon .

введіть тут опис зображення


5

Я можу вам сказати, це досить важко зробити самотужки.

Якщо ви хочете замінити системні піктограми, такі як папки, вони є тут:

/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/

Якщо ви хочете замінити піктограми на додатки в розділі / Програми, це потрібно зробити індивідуально. Зазвичай:

/Applications/AppName.app/Contents/Resources/AppName.icns

Після його заміни нова піктограма не відображатиметься, поки кеш іконок не буде скинутий. У Mavericks скидання LaunchServices оновило б ікону, але в Yosemite з часу, який я провів з нею, "iconcache" має бути видалено.

https://gist.github.com/fabiofl/5873100

Загалом, потрібно терпіння.

Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.