macOSの画面を左右2分割で表示する
macOS自体に左右2分割で表示する機能がありますが、ウィンドウが全画面になってしまうのでちょっと使いづらい。
osascript
を使うと、ウィンドウの位置とサイズをコマンドラインから設定できるみたいなので、これを使ってみることにした。
align
#!/bin/sh
app=$1
align=$2
case $align in
left )
osascript \
-e "tell application \"${app}\"" \
-e 'set bounds of front window to {0, 23, 839, 1040}' \
-e 'end tell'
break
;;
right )
osascript \
-e "tell application \"${app}\"" \
-e 'set bounds of front window to {840, 23, 1680, 1040}' \
-e 'end tell'
break
;;
* )
echo "第2引数に left または right を入力してください" 1>&2
;;
esac
上記のスクリプトをパスの通った場所に置いて、
align Preview left
align Firefox right
とやると、こんな感じになる。
参考: https://dev.classmethod.jp/smartphone/iphone/mac-app-resize/
Author And Source
この問題について(macOSの画面を左右2分割で表示する), 我々は、より多くの情報をここで見つけました https://qiita.com/miminashi/items/13d20dcb27c648a9ce57著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .