6

I changed to gnome classic fallback, I auto-login but it defaults to unity 3d, how do I make auto-login default to gnome classic?

Jorge Castro
  • 71,754
719016
  • 6,217

3 Answers3

10

Run the following in a gome-terminal:

  • If you want GNOME Classic with effects:

    sudo /usr/lib/lightdm/lightdm-set-defaults -s gnome-classic

  • If you want GNOME Classic without effects:

    sudo /usr/lib/lightdm/lightdm-set-defaults -s gnome-fallback

htorque
  • 64,798
  • gnome-fallback is perfect and what I need for my remote instance since screen updates aren't sent 100% during animations / screen redraws.

    But I don't think this setting is getting set correctly as Libre Office is still doing silly window resizing when multiple are open and I click its launcher icon.

    How can I verify this command has been sent correctly and is sticking?

    – fIwJlxSzApHEZIl Feb 27 '14 at 04:59
  • Ubuntu 18.04 has no lightdm-set-defaults – podarok Jun 27 '19 at 06:10
2

auto log-in gnome classic desktop :

  • sudo apt-get install gnome-session-fallback
  • sudo /usr/lib/lightdm/lightdm-set-defaults -s gnome-classic
hhlp
  • 42,002
1

For Ubuntu 14.04

I followed the post here

Summary :

  • Install the lightdm-webkit-greeter package: sudo apt-get install lightdm-webkit-greeter -y.
  • Open the /etc/lightdm/lightdm-webkit-greeter.conf file in your favorite text editor.
  • Add the following lines to the end of the file:
[SeatDefaults]
user-session=gnome-fallback
vanduc1102
  • 111
  • 4