summaryrefslogtreecommitdiff
path: root/src/ui/theme-files/old/make-gifs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/theme-files/old/make-gifs')
-rwxr-xr-xsrc/ui/theme-files/old/make-gifs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ui/theme-files/old/make-gifs b/src/ui/theme-files/old/make-gifs
new file mode 100755
index 0000000..d5a2f39
--- /dev/null
+++ b/src/ui/theme-files/old/make-gifs
@@ -0,0 +1,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