post_install() {
	echo "Enabling systemd service"
	systemctl enable sddm.service
}

post_upgrade() {
	post_install $1
}

pre_remove() {
        echo "Disabling systemd service"
        systemctl disable sddm.service
}
