tide/tools/crop_screenshots.fish

13 lines
215 B
Fish
Raw Normal View History

2023-09-18 02:19:58 +03:00
function crop_screenshots
mogrify \
# Top
2023-09-28 19:31:29 +03:00
-chop 0x43 \
2023-09-18 02:19:58 +03:00
# Bottom
2023-09-28 19:31:29 +03:00
-crop +0-54 +repage \
2023-09-18 02:19:58 +03:00
# Sides
2023-09-28 19:31:29 +03:00
-shave 49x0 \
2023-09-18 02:19:58 +03:00
# Output
-path out \
*.png
end