summaryrefslogtreecommitdiff
path: root/triggers/gtk-icon-cache.trigger
blob: 711cfab2dca552f6c98452971c9e3e498f9bd36f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

if test \( -x "$(which gtk-update-icon-cache 2>/dev/null)" \) -a \( -d $1/exports/share/icons/hicolor \); then
    cp /usr/share/icons/hicolor/index.theme $1/exports/share/icons/hicolor/
    for dir in $1/exports/share/icons/*; do
        if test -f $dir/index.theme; then
            if ! gtk-update-icon-cache --quiet $dir; then
                echo "Failed to run gtk-update-icon-cache for $dir"
                exit 1
            fi
        fi
    done
fi