You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
511 B
21 lines
511 B
#!/bin/sh -e
|
|
|
|
set -e
|
|
|
|
if dpkg-maintscript-helper supports mv_conffile 2>/dev/null; then
|
|
dpkg-maintscript-helper mv_conffile /etc/xdg/pcmanfm/lubuntu.conf /etc/xdg/pcmanfm/lubuntu/pcmanfm.conf 0.15 -- "$@"
|
|
fi
|
|
|
|
case "$1" in
|
|
remove|purge)
|
|
if [ -x /usr/lib/lightdm/lightdm-set-defaults ] ; then
|
|
/usr/lib/lightdm/lightdm-set-defaults --remove --session=Lubuntu || true
|
|
/usr/lib/lightdm/lightdm-set-defaults --remove --greeter=lightdm-gtk-greeter || true
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
|
|
#DEBHELPER#
|
|
exit 0
|