tide/tools/crop_screenshots.fish
2023-09-28 09:31:29 -07:00

13 lines
215 B
Fish

function crop_screenshots
mogrify \
# Top
-chop 0x43 \
# Bottom
-crop +0-54 +repage \
# Sides
-shave 49x0 \
# Output
-path out \
*.png
end