Ubuntu – Icons in Unity launcher look black

16.04desktop-environmentsiconslauncherunity

A few days ago I turn on my computer and when Linux started, the icons on the desktop look black, I tried reinstalling the desktop, the gnome-shell, updating but nothing happens. I attached a picture with the problem.

Image with the problem

Best Answer

Probably this is due Compiz setting of the current user - for some reason they are mixed. We can experience similar issues when tring to tweak our desktop by using the package compizconfig-settings-manager.

An easy way to examine whether this is the issue is to login as another user - probably the icons will look as normal.

If you are delete all Compiz settings and logout/login, Ubuntu will create them with their default values. Another way is to copy the configuration files from another user's home directory.

You can use the following commands to find all directories related to Compiz and respectively to delete them (where ~ stands for the path to the current user's home):

find ~ -type d -name "*compiz*" -ls
find ~ -type d -name "*compiz*" -delete
Related Question