Difference between revisions of "Install Display Managers"
Views
Actions
Namespaces
Variants
Tools
Revamp lightdm section
imported>Dalto (Update entrance) |
imported>Dalto (Revamp lightdm section) |
||
Line 56: | Line 56: | ||
=LightDM= | =LightDM= | ||
[[File:Lightdm2019-1.png|thumb|left|375px]] | |||
[https://github.com/CanonicalLtd/lightdm LightDM] is a light display manager with minimal dependencies. | |||
==Installing LightDM== | |||
LightDM can be installed with: | |||
pamac install lightdm | |||
sudo | To enable LightDM as the default display manager use: | ||
sudo systemctl enable lightdm.service --force | |||
==Installing a Greeter== | |||
With LightDM, you also will need to install and configure a greeter. If you don't install a greeter, it won't work. | |||
There are a lot of greeters for LightDM. We will cover two of the greeters most commonly used by Manjaro editions. | |||
====Slick Greeter==== | |||
Install the greeter and the configuration tool: | |||
pamac install lightdm-slick-greeter lightdm-settings | |||
Edit the file '''/etc/lightdm/lightdm.conf'''. For instructions on how to edit a file owned by root see [[Viewing_and_editing_configuration_files|this guide]]. | |||
Locate the section '''[Seat:*]'''. Within that section locate the line containing '''greeter-session=''' and replace the entire line with | |||
greeter-session=lightdm-slick-greeter | |||
The slick-greeter ships with a working configuration file but you can optionally run the "Login Window"(lightdm-settings) application and customize the greeter in many ways. | |||
====GTK Greeter==== | |||
Install the greeter and the configuration tool: | |||
pamac install lightdm-gtk-greeter lightdm-gtk-greeter-settings | |||
Edit the file '''/etc/lightdm/lightdm.conf'''. For instructions on how to edit a file owned by root see [[Viewing_and_editing_configuration_files|this guide]]. | |||
Locate the section '''[Seat:*]'''. Within that section locate the line containing '''greeter-session=''' and replace the entire line with | |||
greeter-session=lightdm-gtk-greeter | |||
The gtk greeter ships with a working configuration file but you can optionally run the "LightDM GTK+ Greeter Settings"(lightdm-gtk-greeter-settings) application and customize the greeter in many ways. | |||