diff options
author | Jonas Kohl | 2024-12-10 17:15:10 +0100 |
---|---|---|
committer | Jonas Kohl | 2024-12-10 17:15:10 +0100 |
commit | 7d685c5e64149e20c7dc8977f645e050be53ddfd (patch) | |
tree | 44a931c23979aaa2e22b079f8af9232f490eb4d3 /src/ui/theme-files/old/make-gifs | |
parent | 7c9f91333da983da37d3dc837fa61ef0bff64549 (diff) |
Add classic theme
Diffstat (limited to 'src/ui/theme-files/old/make-gifs')
-rwxr-xr-x | src/ui/theme-files/old/make-gifs | 7 |
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 |