summaryrefslogtreecommitdiffstats
path: root/sddm/build/README.slackware
diff options
context:
space:
mode:
Diffstat (limited to 'sddm/build/README.slackware')
-rw-r--r--sddm/build/README.slackware26
1 files changed, 26 insertions, 0 deletions
diff --git a/sddm/build/README.slackware b/sddm/build/README.slackware
new file mode 100644
index 00000000..fc49ce01
--- /dev/null
+++ b/sddm/build/README.slackware
@@ -0,0 +1,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<----------------------------------------------------------------
+
+