summaryrefslogtreecommitdiffstats
path: root/source/kde/kde/doinst.sh/sddm
diff options
context:
space:
mode:
Diffstat (limited to 'source/kde/kde/doinst.sh/sddm')
-rw-r--r--source/kde/kde/doinst.sh/sddm19
1 files changed, 19 insertions, 0 deletions
diff --git a/source/kde/kde/doinst.sh/sddm b/source/kde/kde/doinst.sh/sddm
new file mode 100644
index 000000000..6571d9b4d
--- /dev/null
+++ b/source/kde/kde/doinst.sh/sddm
@@ -0,0 +1,19 @@
+config() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ # If there's no config file by that name, mv it over:
+ if [ ! -r $OLD ]; then
+ mv $NEW $OLD
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
+ # toss the redundant copy
+ rm $NEW
+ fi
+ # Otherwise, we leave the .new copy for the admin to consider...
+}
+
+config etc/sddm.conf.new
+config etc/default/sddm.new
+config usr/share/sddm/scripts/Xsession.new
+config usr/share/sddm/scripts/Xsetup.new
+config usr/share/sddm/scripts/Xstop.new
+config usr/share/sddm/scripts/wayland-session.new