12 lines
322 B
Text
12 lines
322 B
Text
# REMOVE for 'spotify'
|
|
# Deleting dynamically fetched files
|
|
|
|
if test "$ACTION" = "post"; then
|
|
rm -r /usr/share/licenses/spotify
|
|
rm /usr/share/applications/spotify.desktop
|
|
for _s in 16 22 24 32 48 64 128 256 512; do
|
|
rm "/usr/share/icons/hicolor/${_s}x${_s}/apps/spotify-client.png"
|
|
done
|
|
rm -r /usr/share/spotify
|
|
fi
|
|
|