Desktop Manager compiz not working

11,014

Try to reset the desktop environment, if you are using unity then do this:

unity --reset 

If that fails to solve the problem, then try to reinstall unity(I’m assuming you are using unity):

sudo apt-get update
sudo apt-get install --reinstall ubuntu-desktop
sudo apt-get install unity

Added: If that fails, try to do the following, to completely reset all changes made by Compiz:

Install dconf-tools: sudo apt-get install dconf-tools

Reset Compiz and Unity: dconf reset -f /org/compiz/

Reset Unity: setsid unity

If that also fails, then maybe deleting the settings files might help:

rm  -rf ~/.compiz-1 
rm -rf ~/.config/compiz-1

Lastly, you could try the following:

sudo apt-get install dconf-tools
dconf reset -f /org/compiz/
unity --reset-icons
Share:
11,014

Related videos on Youtube

Natjo
Author by

Natjo

Updated on September 18, 2022

Comments

  • Natjo
    Natjo over 1 year

    I'm running Ubuntu 14.04, and recently configured my desktop environment with the compizconfig-settings-manager. After some tries I reseted everything and suddenly all window top bars are away, I can't move or resize windows and the task bar is gone too.

    I can run commands via tty, and tried some solutions. I deleted the compiz file in the ~/.config/ path and also tried to restart compiz or unity. I also deleted and installed compiz without any change.

    Nothing worked so far, I really need some help

  • Tshilidzi Mudau
    Tshilidzi Mudau over 8 years
    Please see additional instructions added to the answer.
  • Tshilidzi Mudau
    Tshilidzi Mudau over 8 years
    Awesome, I'm glad I could help.
  • ViliusK
    ViliusK almost 8 years
    Thank you, @Tshilidzi, last commands helped me: sudo apt-get install dconf-tools dconf reset -f /org/compiz/ unity --reset-icons