~xubuntu-dev/xubuntu-default-settings/trunk

« back to all changes in this revision

Viewing changes to debian/xubuntu-default-settings.preinst

Set the default value for fadeout in xfce4-notifyd (LP: #1763674), release 18.04.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
 
3
 
set -e
4
 
 
5
 
case "$1" in
6
 
  upgrade)
7
 
    if dpkg --compare-versions "$2" eq "11.10.2"; then
8
 
      update-alternatives --remove lightdm-config-derivative /usr/share/xubuntu/lightdm/lightdm.conf
9
 
      update-alternatives --remove default-xsession-derivative /usr/share/xsessions/xubuntu.desktop
10
 
    fi
11
 
    ;;
12
 
esac
13
 
 
14
 
#DEBHELPER#