diff --git a/scripts/set-safari-screenshot-resolution.applescript b/scripts/set-safari-screenshot-resolution.applescript new file mode 100644 index 0000000..d1bce8c --- /dev/null +++ b/scripts/set-safari-screenshot-resolution.applescript @@ -0,0 +1,8 @@ +(* +Sets Safari dimensions for 2880 x 1800 px screenshots - including the drop shadow - at scale=2. +This only works when not connected to an external display. +*) +tell application "Safari" + activate + set bounds of window 1 to {0, 0, 1328, 788} +end tell \ No newline at end of file