/usr/lib/cruft/explain/ICON-THEME is in cruft 0.9.19.
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 | #!/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
find /usr/share/icons/ -iwholename /usr/share/icons/$package/icon-theme.cache
done;
|