- add SpaceFun wallpaper * slashy: - add SpaceFun theme * debian/postinst: - add SpaceFun alternative at maximum level (default Squeeze theme)
37 lines
1.2 KiB
Bash
37 lines
1.2 KiB
Bash
#!/bin/sh -e
|
|
|
|
#DEBHELPER#
|
|
|
|
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
|
|
# remove background alternatives
|
|
update-alternatives --remove desktop-background \
|
|
/usr/share/images/desktop-base/spacefun-wallpaper.svg
|
|
|
|
update-alternatives --remove desktop-background \
|
|
/usr/share/images/desktop-base/moreblue-orbit-wallpaper.svg
|
|
|
|
update-alternatives --remove desktop-background \
|
|
/usr/share/images/desktop-base/moreblue-orbit-wallpaper-widescreen.svg
|
|
|
|
update-alternatives --remove desktop-background \
|
|
/usr/share/images/desktop-base/nightly-wallpaper.png
|
|
|
|
update-alternatives --remove desktop-background \
|
|
/usr/share/images/desktop-base/debian-blueish-wallpaper.svg
|
|
|
|
# remove splash alternatives
|
|
update-alternatives --remove desktop-splash \
|
|
/usr/share/images/desktop-base/moreblue-orbit-splash.png
|
|
|
|
update-alternatives --remove desktop-splash \
|
|
/usr/share/images/desktop-base/gnome-splash-curves.png
|
|
|
|
# remove grub alternatives
|
|
update-alternatives --remove desktop-grub \
|
|
/usr/share/images/desktop-base/spacefun-grub.png
|
|
|
|
update-alternatives --remove desktop-grub \
|
|
/usr/share/images/desktop-base/moreblue-orbit-grub.png
|
|
fi
|
|
|