Mavericks से उन लोगों के साथ Yosemite आइकन कैसे बदलें?


14

Yosemite में अपग्रेड करने से पहले, मैं Mavericks से ऐप आइकन डाउनलोड करना चाहूंगा, क्योंकि नए आइकन बहुत बदसूरत हैं

Mavericks से पुराने सिस्टम आइकन की पूरी प्रतिलिपि रखने का सबसे अच्छा तरीका क्या है?

अपडेट करें:

यहां छवि विवरण दर्ज करें

अंत में, मैं इसे एक-एक करके युकी यामाशिना की विधि का उपयोग कर रहा हूँ ।


फाइंडर आइकन एक आपदा है। बाकी ठीक हैं, इमो।

जवाबों:


9

@ ओहो के जवाब के बाद, मैंने एक त्वरित स्क्रिप्ट लिखी जो आपको प्रत्येक आइकन के रंग को समायोजित करने के प्रयास को बचाएगा। यह स्क्रिप्ट ड्रॉपबॉक्स फ़ोल्डर आइकन भी संभालती है। आपको इमेजमागिक और एक्सकोड कमांड लाइन उपयोगिताओं की आवश्यकता होगी। दोनों को प्राप्त करने का सबसे अच्छा तरीका है होमब्रे को स्थापित करना और फिर चलाना

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.

आइकन, लाइटआईकॉन बदलने के लिए एक अच्छा मुफ्त ऐप है ।

यहां छवि विवरण दर्ज करें


5

मैं आपको बता सकता हूं, यह अपने आप से करना बहुत कठिन है।

यदि आप सिस्टम आइकनों को बदलना चाहते हैं, जैसे कि फ़ोल्डर, वे यहाँ हैं:

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

यदि आप ऐप्स / एप्लिकेशन के तहत आइकन बदलना चाहते हैं, तो इसे व्यक्तिगत रूप से करना होगा। आमतौर पर:

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

इसे बदलने के बाद, नया आइकन तब तक नहीं दिखाएगा जब तक आइकन कैश रीसेट नहीं हो जाता। Mavericks में, LaunchServices को रीसेट करने से आइकन अपडेट हो जाएगा, लेकिन योसमाइट में, जब मैंने इसके साथ बिताया, तब से "iconcache" को हटाना होगा।

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

सब सब में, यह धैर्य लेता है।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.