lubuntu-default-settings/debian/lubuntu-default-settings.postrm
Julien Lavergne 84cb72da30 * etc/xdg/lubuntu/menus/lxgames-applications.menu :
- Add a specific menu structure for a games session.
* usr/bin/startlubuntu-lxgames :
 - Add a new script to start a games session, with a specific menu structure.
* usr/share/xsessions/lxgames.desktop :
 - Add a new session to start a games session.
* debian/control:
 - Add new binaries, to configure default session on lightdm.
* Reorganize script in debian/ to handle the creation of the new
  default-session binaries.
* debian/lubuntu-default-settings.install:
 - Keep all files in lubuntu-default-settings.
2012-11-18 00:53:33 +01:00

17 lines
320 B
Bash

#!/bin/sh -e
set -e
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