1

After I paste these scripts into terminal, my wallpaper became white.

sudo ln -s /etc/xdg/xdg-une/autostart/maximus-autostart.desktop /etc/xdg/autostart/
sudo ln -s /etc/xdg/xdg-une/autostart/netbook-launcher.desktop /etc/xdg/autostart/
sudo ln -s /usr/share/gconf/une/default/20_une-gconf-default /usr/share/gconf/defaults/
sudo ln -s /usr/share/gconf/une/mandatory/20_une-gconf-mandatory /usr/share/gconf/defaults/
sudo update-gconf-defaults

Help me, I dont know what [-s] for ? and how do i get my wallpaper back.

Best Regards from Newbie

nanofarad
  • 20,717
Vray
  • 23

2 Answers2

1

It's so funny that i solved my own question. LOL . So, after long googling i decided to remove mutter with this commands sudo apt-get remove unity

And everything goes perfectly

Vray
  • 23
1

ln -s will make a symbolic link to a file. To reverse what you have done just delete the links:

sudo rm /etc/xdg/autostart/maximus-autostart.desktop 
sudo rm /etc/xdg/autostart/netbook-launcher.desktop 
sudo rm /usr/share/gconf/defaults/20_une-gconf-default 
sudo rm /usr/share/gconf/defaults/20_une-gconf-mandatory 
sudo update-gconf-defaults

That should leave the system in the state that was prior the commands.

Javier Rivera
  • 35,153