summaryrefslogtreecommitdiffstats
path: root/sddm/build/README.slackware
blob: fc49ce012564ef1bc0c8f22e3a1893facdc70c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Configuring SDDM
================

The SDDM configuration file is "/etc/sddm.conf". In that file, you can
define the graphical theme to be used among other things.


Adding SDDM as graphical display manager for runlevel 4
=======================================================

If you installed SDDM and want this graphical display manager to be used in
runlevel 4 instead of Slackware's own KDM, XDM or even Gnome's GDM, then
you need to add the following lines to the file '/etc/rc.d/rc.4' directly
below the line that says:
echo "Starting up X11 session manager..."

# ----8<----------------------------------------------------------------

# Use Simple Display Desktop Manager
if [ -x /usr/bin/sddm ]; then
  exec /usr/bin/sddm
fi

# ----8<----------------------------------------------------------------