Skip to content

Instantly share code, notes, and snippets.

@KevinJones
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KevinJones/49c622fa2a622be509de to your computer and use it in GitHub Desktop.
Save KevinJones/49c622fa2a622be509de to your computer and use it in GitHub Desktop.
elementary OS Luna: Fix blurry Chrome dock icon
# 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