Answers:
看一下手册页 open
,它似乎不允许它,但你可以使用applescript来调整窗口大小和位置:
tell application "Finder" to set the bounds of window 1 to {325, 465, 1095, 926}
数字是窗口左上角和右下角的坐标(以像素为单位):
如果您根据需要设置窗口,可以使用applescript告诉您当前的边界:
tell application "Finder" to get the bounds of window 1
窗口编号从前到后分配,从1开始。
如果您愿意,也可以按名称而不是id引用窗口,但如果每次窗口名称不同,则无法使用:
tell application "Finder" to get the name of window 1
tell application "Finder" to set the bounds of window "name" to {325, 465, 1095, 926}
更新: 多个监视器的坐标表现得好像存在单个大显示器。