summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2013-05-16 14:16:36 +0000
committer Eric Hameleers <alien@slackware.com>2013-05-16 14:16:36 +0000
commit288a45a292341e9cb8b31a55467f5f784c11e462 (patch)
tree6d58c7eddf9b0347d235930b1e3b70e5e428cf7f
parent185177b21ad21dc26f58b9bfd8ec421b7af6042c (diff)
downloadasb-288a45a292341e9cb8b31a55467f5f784c11e462.tar.gz
asb-288a45a292341e9cb8b31a55467f5f784c11e462.tar.xz
Initial revision
-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<----------------------------------------------------------------
+
+