summaryrefslogtreecommitdiff
path: root/src/ui/theme-files/old/make-gifs
blob: d5a2f392186d1167324dde7fe4e090b6f8cfe86e (plain)
1
2
3
4
5
6
7
#!/bin/sh
for f in *.png; do
    out_file="${f%.*}.gif"
    if [ ! -f "$out_file" ]; then
        magick "$f" -background white -flatten -transparent white "$out_file"
    fi
done