#!/bin/sh
# postinst script
#
# see: dh_installdeb(1)

set -e

if [ -f /etc/sddm.conf ]; then
	mv /etc/sddm.conf /etc/sddm-old.conf
fi

if [ -f /etc/sddm-sparky1.conf ]; then
	cp /etc/sddm-sparky1.conf /etc/sddm.conf
fi

exit 0


