mirror of
https://github.com/IlanCosman/tide.git
synced 2025-01-07 09:29:12 +03:00
13 lines
215 B
Fish
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
|