답변:
예, AppleScript를 사용하여 수행 할 수 있습니다. 이 링크 를 읽고 코드를 이해 한 다음 특정 상황에 맞게 직접 코드를 구현하십시오.
다음 은 창의 경계를 자세히 설명하는 다른 링크입니다.
tell application "Finder" to set the bounds of the front window to {24, 96, 524, 396}
Finder 윈도우가 왼쪽 상단에 위치하도록 설정합니다.
참고 : BetterSnapTool 확인하십시오 . 정확히 1.99 달러에 원하는 것을합니다. 나는 그것을 직접 사용하고 특히 저렴한 가격으로 귀중한 것을 발견합니다.
system_profiler SPDisplaysDataType | grep Resolution
iTerm에서 실행 하여 화면 해상도를 얻을 수 있습니다 . 아니면 열어 System Profiler
보면 알려줄 것입니다. AppleScript에서 윈도우의 bounds 속성을 사용하는 것이 한 가지 더 있습니다. Finder 윈도우를 완전히 열어 놓고 (전체 화면을 채우려면 드래그하여) tell application "Finder" to get the bounds of the front window
AppleScript에서 실행 하면 범위를 나타내는 경계가 반환됩니다. 창문.
tell application "Finder" to get the bounds of the front window
하면 화면의 전체 경계인 윈도우 영역이 반환됩니다. {72, 90, 512, 481} 형식으로 리턴합니다.