File: prerm

package info (click to toggle)
gnome-icon-theme 3.12.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 69,460 kB
  • sloc: sh: 788; makefile: 161
file content (11 lines) | stat: -rw-r--r-- 287 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh
set -e

if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ] ; then
  for name in debian-swirl gnome-foot; do
    update-alternatives --remove start-here.svg /usr/share/icons/gnome/scalable/places/$name.svg
  done
  rm -f /usr/share/icons/gnome/icon-theme.cache
fi

#DEBHELPER#