0

I was trying to change some settings with the compizconfig settings manager but there was a conflict between some of the appearance options.

Unfortunately, now I can't see the Unity dash or the panel at the top. I can see my desktop and open files and folders from there, but after I open them there is no button for closing or minimizing them.

Also shortcuts like Ctrl+Alt+T don't work.

Can I do anything to bring my pc back to normal without reinstalling Ubuntu?

Tim
  • 33,500

2 Answers2

1

Sounds like your Compiz and/or Unity settings are screwed up.

Try the following. First of all, since you can't fire up a terminal when in X, switch to non-graphical mode:

  1. Hit Ctrl+Alt+F1. This will get you to the non-graphical mode.

  2. Login there with your username and password.

Now from here, we'll try to reset your faulty configuration.

Option 1: Reset Compiz configuration

To reset only the Compiz settings, execute the following commands:

DISPLAY=:0.0 dconf reset -f /org/compiz
rm -r ~/.compiz* ~/.config/compiz*

This should restore your Compiz settings to default.

Finally, restart X (i.e., the graphical mode):

sudo service lightdm restart

Option 2: Reset Unity configuration

If the above doesn't solve your problem, try yo completely reset your Unity configuration. From this answer, you can use the unity-tweak-tool for this. You'll have to install it first:

sudo apt-get install unity-tweak-tool

Then, execute the following command:

DISPLAY=:0.0 unity-tweak-tool --reset-unity

Finally, switch back to X by hitting Ctrl+Alt+F7.

dummy transparent line

Hopefully, one of these will fix it.

Malte Skoruppa
  • 13,846
  • 5
  • 58
  • 65
0

You likely disabled the Ubuntu Unity Plugin so just open ccsm again & re-enable it. (/usr/share/applications & d. click on CompizConfig Settings Manager > open Ubuntu Unity Plugin settings to re-enable.

If you had enabled Window Decoration plugin then unity would have been disabled.

Running those reset commands will not re-enable unity plugin.

doug
  • 17,212