13 lines
315 B
Plaintext
13 lines
315 B
Plaintext
|
# 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.png"
|
||
|
done
|
||
|
rm -r /usr/share/spotify
|
||
|
fi
|
||
|
|