File: postrm

package info (click to toggle)
big-cursor 3.16
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: sh: 17; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -e

# Divert the regular cursor back into place now that our version is gone.
if [ "$1" = remove ]; then
	dpkg-divert --package big-cursor --remove --rename --divert \
		/usr/share/fonts/X11/misc/cursor.pcf.gz-small \
		/usr/share/fonts/X11/misc/cursor.pcf.gz 
fi
		
#DEBHELPER#