window manager
{{InfoBox wikipedia|X display manager (program type)|header=true
}}
A 'display manager
' ('DM
'), sometimes known as 'login manager
', X or Wayland.]]
A display manager is not mandatory. X or Wayland can be started from a shell in a VT, but one can provide extra or useful funtionality. For how to run X without a DM, see X without Display Manager.
Available software
Some display managers are listed below.
NB: Some Wayland DMs below are found in the overlay [https://github.com/bsd-ac/wayland-desktop wayland-desktop], but not yet merged to the official Portage tree.
Name | Package | Type | Description |
---|---|---|---|
CDM | x11-misc/cdm | Console | Minimalistic. |
GNOME/gdm | gnome-base/gdm | X / Wayland | Often used with GNOME. |
Greetd | gui-apps/gtkgreet<br>gui-apps/tuigreet<br />[https://github.com/bsd-ac/wayland-desktop/tree/master/gui-apps/qtgreet gui-apps/qtgreet] | Wayland | Frontends for greetd. TUIGreetd runs in console. |
LightDM | x11-misc/lightdm | X | Lightweight, and customizable via greeters. |
LXDM | lxde-base/lxdm | X | LXDE Display Manager. |
Qingy | sys-apps/qingy | console | getty replacement. |
SDDM | x11-misc/sddm | X / Wayland | Modern, fast DM aiming to be simple and beautiful. Highly customizable, eye candy display manager from KDE |
SLiM | x11-misc/slim | X | Requires only a few dependencies. |
WDM | x11-misc/wdm | X | Modification of XDM. |
XDM | x11-apps/xdm | X | X.Org's DM. |
Configuration
In all major Linux operating systems, display managers are started automatically on boot. In order for this to happen automatically a script must be added to the init system's appropriate runlevel. Examples for OpenRC and systemd are provided below.
OpenRC
Under most circumstances, the OpenRC init system (Gentoo's default init system) will be used to start the display manager. The following examples will set SDDM as the display manager, adjust as necessary for other display managers.
Historically, the xdm
init script handled the starting of the display manager, which has now been deprecated in favor of the display-manager
init script from gui-libs/display-manager-init, jump to next section for a sytem still using xdm.
If gui-libs/display-manager-init is not present, emerge it with:
The configuration file should be modified to use SDDM:
To start the chosen display manager on boot, add the display-manager
to the system's default
runlevel:
rc-update add display-manager default
To start the display-manager
immediately, run:
Historical use of the deprecated ''xdm'' init script
To start the chosen display manager on boot, add the xdm
to the system's default
runlevel:
To start SDDM immediately, run:
systemd
If using systemd as the init system, first locate the chosen <display-manager>.service file.
To start SDDM on boot, enable the service: systemctl enable sddm.service
To start SDDM immediately, run: systemctl start sddm.service