tide/tools/crop_screenshots.fish
2023-09-28 08:01:06 -07:00

13 lines
215 B
Fish

function crop_screenshots
mogrify \
# Top
-chop 0x38 \
# Bottom
-crop +0-46 +repage \
# Sides
-shave 44x0 \
# Output
-path out \
*.png
end