#!/usr/bin/env bash # Cycle the Hangar hard-point weapon carousel one step right and capture the # Name + DATA SHEET panel (the mountable-weapon list for that hard point). set -u export HOME=/sylph-home/re OUT=/sylph-home/re/caps; mkdir -p "$OUT" [ "${1:-}" = "none" ] || { vgamepad dpad right; sleep 0.20; vgamepad dpad center; } sleep 2.5 screenshot /tmp/h.png >/dev/null 2>&1 convert /tmp/h.png -crop 495x460+705+95 +repage "$OUT/$2.png" echo "$OUT/$2.png"