~peter-pearse/ubuntu/oneiric/xcursor-themes/prop001

« back to all changes in this revision

Viewing changes to debian/xcursor-themes.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Parra Novo
  • Date: 2006-08-04 08:37:07 UTC
  • Revision ID: james.westby@ubuntu.com-20060804083707-lsqb8zchlxvfhsnb
Tags: 1.0.1-4build1
Fakesync with Debian unstable (due to different orig.tar.gz)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
set -e
3
 
 
4
 
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
5
 
  # deregister available X cursor themes with update-alternatives
6
 
  update-alternatives --remove x-cursor-theme /etc/X11/cursors/core.theme
7
 
  for THEME in whiteglass redglass handhelds; do
8
 
    update-alternatives --remove x-cursor-theme "/etc/X11/cursors/$THEME.theme"
9
 
  done
10
 
fi
11
 
 
12
 
#DEBHELPER#
13
 
 
14
 
exit 0