selektor/packaging/DEBIAN/postrm

11 lines
264 B
Bash
Executable File

#!/bin/sh -e
# Remove autostart
set -e
rm /etc/xdg/autostart/selektor-autostart.desktop -f
# Automatically added by dh_icons
if which update-icon-caches >/dev/null 2>&1 ; then
update-icon-caches /usr/share/icons/selektor.png
fi
# End automatically added section