あなたが望む実際のコマンドは次のようなものです
wmctrl -r :ACTIVE: -b add,maximized_vert &&
wmctrl -r :ACTIVE: -e 0,0,0,$HALF,-1
これにより、現在のウィンドウが画面の半分になり(画面$HALF
のサイズに変更)、左側にスナップします。右にスナップするには、次を使用します
wmctrl -r :ACTIVE: -b add,maximized_vert &&
wmctrl -r :ACTIVE: -e 0,$HALF,0,$HALF,-1
wmctrl
を使用する代わりに、を使用して、興味のあるウィンドウのIDを取得することもできます:ACTIVE:
。しかし、それは問題のウィンドウに依存するため、そこでは仕方がありません。見ていman wmctrl
多くのために。
そのためのスクリプトを作成しました。私はUnityを使用していないので、Unityが動作することを保証できませんが、Unityが動作しない理由はわかりません。必要wmctrl
でxdpyinfo
ありdisper
、インストールする必要があります:
sudo apt-get install wmctrl x11-utils disper
次に、以下のスクリプトをとして保存し、~/bin/snap_windows.sh
で実行可能にして実行chmod a+x ~/bin/snap_windows.sh
できます。
snap_windows.sh r
右側にスナップします。l
ウィンドウを最大化するには、左側で引数なしで使用します。現在のウィンドウで実行されるため、ターミナル以外で実行する場合はショートカットを割り当てる必要があります。
このスクリプトは、シングルモニターとデュアルモニターの両方のセットアップで動作するように記述しているため、ユーザーが求めるものよりも少し複雑です。
#!/usr/bin/env bash
## If no side has been given, maximize the current window and exit
if [ ! $1 ]
then
wmctrl -r :ACTIVE: -b toggle,maximized_vert,maximized_horz
exit
fi
## If a side has been given, continue
side=$1;
## How many screens are there?
screens=`disper -l | grep -c display`
## Get screen dimensions
WIDTH=`xdpyinfo | grep 'dimensions:' | cut -f 2 -d ':' | cut -f 1 -d 'x'`;
HALF=$(($WIDTH/2));
## If we are running on one screen, snap to edge of screen
if [ $screens == '1' ]
then
## Snap to the left hand side
if [ $side == 'l' ]
then
## wmctrl format: gravity,posx,posy,width,height
wmctrl -r :ACTIVE: -b add,maximized_vert && wmctrl -r :ACTIVE: -e 0,0,0,$HALF,-1
## Snap to the right hand side
else
wmctrl -r :ACTIVE: -b add,maximized_vert && wmctrl -r :ACTIVE: -e 0,$HALF,0,$HALF,-1
fi
## If we are running on two screens, snap to edge of right hand screen
## I use 1600 because I know it is the size of my laptop display
## and that it is not the same as that of my 2nd monitor.
else
LAPTOP=1600; ## Change this as approrpiate for your setup.
let "WIDTH-=LAPTOP";
SCREEN=$LAPTOP;
HALF=$(($WIDTH/2));
if [ $side == 'l' ]
then
wmctrl -r :ACTIVE: -b add,maximized_vert && wmctrl -r :ACTIVE: -e 0,$LAPTOP,0,$HALF,-1
else
let "SCREEN += HALF+2";
wmctrl -r :ACTIVE: -b add,maximized_vert && wmctrl -r :ACTIVE: -e 0,$SCREEN,0,$HALF,-1;
fi
fi