selektor/packaging/DEBIAN/postrm

11 lines
264 B
Plaintext
Raw Permalink Normal View History

2022-11-02 08:12:45 +00:00
#!/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