@elextr Hence me saying icons/tango/scalable/geany-save-all.svg, notice the tango in the path ;)

@paulmenzel If there are sizes at which the icon is missing, could you try adding those sizes and see if it helps?

# To be run from Geany's source directory.
prefix=/usr/ # where Geany is installed
for d in /usr/share/icons/hicolor/[0-9]*x[0-9]*/actions; do
    target=$prefix/${d##/usr/}
    [ -f $d/geany-build.png -o -f $target/geany-build.png ] && continue
    s=${d%x[0-9]*}; s=${s##*/}
    mkdir -p $target
    inkscape -z -e $target/geany-build.png -w $s -h $s icons/scalable/geany-build.svg
done

You might also have to update $prefix/share/icons/hicolor/index.theme, or not if you installed in /usr anyway.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.