/usr/lib/cruft/explain/ICON-THEME is in cruft-common 0.9.34.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #!/bin/dash
set -e
packages1="$(dpkg-query -W -f='${db:Status-Abbrev}-${binary:Package}\n' '*-icon-theme' 2> /dev/null | grep ^i | cut -f 2 -d \- )"
packages2="$(dpkg-query -W -f='${db:Status-Abbrev}-${binary:Package}\n' 'kde-icons-*' 2> /dev/null | grep ^i | cut -f 4 -d \- )"
packages="$(echo $packages1 $packages2 | sort -u)"
# headless setups won't have any icons
[ -z "$packages" ] && exit 0
for package in $packages;
do
# lxde-icon-theme
if [ "$package" = "lxde" ]
then
package=nuoveXT2
fi
if [ "$package" = "numix" ]
then
find /usr/share/icons/ -iwholename /usr/share/icons/Numix-Light/icon-theme.cache
fi
find /usr/share/icons/ -iwholename /usr/share/icons/$package/icon-theme.cache
done;
|