Last active
August 29, 2015 14:04
-
-
Save KevinJones/49c622fa2a622be509de to your computer and use it in GitHub Desktop.
elementary OS Luna: Fix blurry Chrome dock icon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If your dock icon for Chrome is blurry in elementary OS Luna, this well help you fix it. | |
# This will create symbolic links for each of the icon sizes in the /usr/share/icons/elementary/apps directory. | |
# Log out and log back in afterwards to see the changes. | |
function make_link { | |
if [ "$1" ] | |
then | |
SIZE=$1; sudo ln -s /opt/google/chrome/product_logo_$SIZE.png /usr/share/icons/elementary/apps/$SIZE/google-chrome.png | |
fi | |
} | |
make_link 16 | |
make_link 22 | |
make_link 24 | |
make_link 32 | |
make_link 48 | |
make_link 64 | |
make_link 128 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment