答案1
以下是 AppleScript 代码:
property excludedApplicationNames : {"Safari", "iTunes", "Transmit"}
tell application "System Events" to get the name of every process
repeat with theProcess in the result
set theProcessName to theProcess as string
if theProcessName is not in excludedApplicationNames
tell application "System Events" to set position of windows of process theProcess to {75, 140}
end if
end repeat
如果您遇到的唯一问题是它将窗口放在何处(这并不奇怪,因为提问者希望将所有窗口都放在一个位置),那么请更改该行以将它们放在您想要的位置。
或者…
如果你想要第三方实用程序为你完成工作,你可能会喜欢停留来自 Cordless Dog。