diff options
author | j-james | 2020-10-21 21:30:57 +0000 |
---|---|---|
committer | j-james | 2020-10-21 21:30:57 +0000 |
commit | ec485688cd407bb0983c208dbf2c3267a9a071fc (patch) | |
tree | ad9916b985db5cf52ab0c749a17b71a7f38bc0f7 /folder-thumbnailer |
Create custom folder thumbnailer for Tumbler
Diffstat (limited to 'folder-thumbnailer')
-rw-r--r-- | folder-thumbnailer | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/folder-thumbnailer b/folder-thumbnailer new file mode 100644 index 0000000..b4b0b5b --- /dev/null +++ b/folder-thumbnailer @@ -0,0 +1,15 @@ +#!/bin/bash + +if [ -f "$2/.folder.jpg" ]; then + convert -thumbnail "$1" "$2/.folder.jpg" "$3" 1>/dev/null 2>&1 +elif [ -f "$2/.folder.png" ]; then + convert -thumbnail "$1" "$2/.folder.png" "$3" 1>/dev/null 2>&1 +elif [ -f "$2/.folder.svg" ]; then + inkscape --export-type=png --export-dpi=500 "$2/.folder.svg" --export-filename="$3" 1>/dev/null 2>&1 + convert -thumbnail "$1" "$3" "$3" 1>/dev/null 2>&1 +else + rm -f "$HOME/.cache/thumbnails/normal/$(echo -n "$4" | md5sum | cut -d " " -f1).png" || \ + rm -f "$HOME/.thumbnails/normal/$(echo -n "$4" | md5sum | cut -d " " -f1).png" || \ + rm -f "$HOME/.cache/thumbnails/large/$(echo -n "$4" | md5sum | cut -d " " -f1).png" || \ + rm -f "$HOME/.thumbnails/large/$(echo -n "$4" | md5sum | cut -d " " -f1).png" +fi |