* etc/xdg/pcmanfm/lubuntu.conf

- Move configuration file to etc/xdg/pcmanfm/lubuntu/lubuntu.conf
* debian/postrm,preinst,postinst
 - Handle the location change for pcmanfm configuration using
   dpkg-maintscript-helper.
ubuntu/bionic
Julien Lavergne 14 years ago
parent 319f377398
commit 694056d1cc

7
debian/changelog vendored

@ -5,7 +5,12 @@ lubuntu-default-settings (0.16) UNRELEASED; urgency=low
* usr/share/lubuntu/openbox/rc.xml:
- Remove some unused code.
* debian/control
- Recommends amixer, scrot and galculator for some openbox keybindings.
- Recommends amixer, scrot and galculator for some openbox keybindings.
* etc/xdg/pcmanfm/lubuntu.conf
- Move configuration file to etc/xdg/pcmanfm/lubuntu/lubuntu.conf
* debian/postrm,preinst,postinst
- Handle the location change for pcmanfm configuration using
dpkg-maintscript-helper.
-- Julien Lavergne <gilir@ubuntu.com> Sun, 05 Dec 2010 18:56:49 +0100

4
debian/postinst vendored

@ -15,5 +15,9 @@ if [ "$1" = configure ]; then
lxdm.conf /etc/xdg/lubuntu/lxdm/lxdm.conf 60
fi
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/lubuntu.conf 0.15 -- "$@"
fi
#DEBHELPER#
exit 0

10
debian/postrm vendored

@ -0,0 +1,10 @@
#!/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/lubuntu.conf 0.15 -- "$@"
fi
#DEBHELPER#
exit 0

10
debian/preinst vendored

@ -0,0 +1,10 @@
#!/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/lubuntu.conf 0.15 -- "$@"
fi
#DEBHELPER#
exit 0
Loading…
Cancel
Save