0

Im a real noob with computers and installed accidentally Xmonad, without knowning that it was code-based. How can i switch back to unity?

disk
  • 9
  • 2

2 Answers2

0

Two imperfect ways to do this:

(Assuming Unity is still installed)

  • ctrl + alt + t to open up a terminal, and type:

    unity --replace

or

Anon
  • 12,339
0

Use CTRL + ALT + F1 like you did before and login with your username and password.

Then type this:

sudo apt-get purge xmonad && sudo apt-get install --reinstall ubuntu-desktop

When that's said and done with, you can start a regular xsession with this command:

sudo service lightdm start

or

sudo service lightdm restart

To bypass the login screen and go directly into your default desktop type:

startx

To see if there are any other related packages still installed you can type this command:

dpkg -l | grep xmonad

No output = no packages are installed.

mchid
  • 44,904
  • 8
  • 102
  • 162