File: breeze-cursor-theme.prerm

package info (click to toggle)
breeze 4%3A5.20.5-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 26,044 kB
  • sloc: cpp: 13,741; sh: 152; python: 40; makefile: 8
file content (15 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh
set -e

ICONDIR=/etc/X11/cursors

case "$1" in
    remove|deconfigure|failed-upgrade)
       update-alternatives --remove x-cursor-theme \
           $ICONDIR/breeze_cursors.theme
       update-alternatives --remove x-cursor-theme \
           $ICONDIR/Breeze_Snow.theme
    ;;
esac

#DEBHELPER#