backgrounds (PNG, JPEG, ...) for KDE 3 which doen't support SVG backgrounds; use the new background symlink as the default KDE wallpaper in kdesktoprc.
43 lines
1.5 KiB
Bash
43 lines
1.5 KiB
Bash
#!/bin/sh -e
|
|
|
|
#DEBHELPER#
|
|
|
|
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
|
|
# remove background alternatives (both in vector and bitmap formats)
|
|
update-alternatives --remove desktop-background \
|
|
/usr/share/images/desktop-base/debian-blueish-wallpaper.svg
|
|
|
|
update-alternatives --remove desktop-background \
|
|
/usr/share/images/desktop-base/debblue-1600x1200.png
|
|
|
|
update-alternatives --remove desktop-background \
|
|
/usr/share/images/desktop-base/debian-background.svg
|
|
|
|
update-alternatives --remove desktop-background \
|
|
/usr/share/images/desktop-base/bluedeb-1024x768.jpg
|
|
|
|
update-alternatives --remove desktop-background \
|
|
/usr/share/images/desktop-base/Debian.jpg
|
|
|
|
# remove background alternatives (bitmaps only)
|
|
update-alternatives --remove desktop-background-bitmap \
|
|
/usr/share/images/desktop-base/debblue-1600x1200.png
|
|
update-alternatives --remove desktop-background-bitmap \
|
|
/usr/share/images/desktop-base/bluedeb-1024x768.jpg
|
|
update-alternatives --remove desktop-background-bitmap \
|
|
/usr/share/images/desktop-base/Debian.jpg
|
|
|
|
# remove splash alternatives
|
|
update-alternatives --remove desktop-splash \
|
|
/usr/share/images/desktop-base/gnome-splash-curves.png
|
|
|
|
update-alternatives --remove desktop-splash \
|
|
/usr/share/images/desktop-base/Splash-debblue.png
|
|
|
|
update-alternatives --remove desktop-splash \
|
|
/usr/share/images/desktop-base/Splash-Debian.png
|
|
|
|
update-alternatives --remove desktop-splash \
|
|
/usr/share/images/desktop-base/Splash-Debian_red.png
|
|
fi
|