ウィンドウマネージャに依存しないウィンドウのサイズ変更

ウィンドウマネージャに依存しないウィンドウのサイズ変更

最近、Windows 7 の画面サイズ変更機能に触れましたが、とても便利です。次のように機能します。

    monitor 1                       monitor 2
-------------------------   ----------------------------
|          |            |   |             |            | 
|          |            |   |             |            |
|          |            |   |             |            |
|   1      |    2       |   |    3        |    4       |
|          |            |   |             |            |
|          |            |   |             |            |
|          |            |   |             |            |
-------------------------   ----------------------------

モニター 1 でアプリケーションが開かれていて、現在フォーカスが当たっているとします。

  • mod4+上を押すと、モニター 1 が全画面表示になります (つまり、領域 1 と 2 がカバーされます)。

  • mod4+left を押すと、モニター 1 の画面が半分になります (つまり、領域 1 をカバーします)。

  • mod4+右を押すと、モニター 1 の画面が半分になります (ただし、領域 2 もカバーされます)。

  • もう一度mod4+右を押すと、モニター2(エリア3)の半分の画面になります。

  • もう一度mod4+右を押すと、モニター2(エリア4)の半分の画面になります。

  • もう一度mod4+上を押すと、モニター2(エリア3と4)が全画面になります。

質問: ウィンドウ マネージャーに依存しない 3 つのプログラムを使用して、この動作を再現したいと考えています。

  • p_right は右に移動します。モニター 1 の全画面から領域 2、領域 3、領域 4 に移動します。
  • p_leftは左に移動する
  • p_fullは現在のモニターでアプリを全画面表示にします
  • p_right と p_left は賢いです。別のモニターが存在する場合にのみ、プログラムをそのモニターに送信します。

もちろん、キーの組み合わせが押されたときにプログラムが呼び出されるように、アプリケーションをウィンドウマネージャーに接続する必要があります。

どうすればそれを実行できるでしょうか?X/Waylandに対してプログラミングする必要があるのか​​?あるいは、私が使用できるユーティリティがあり、私のプログラムは比較的簡単なbashスクリプトになることができますか??

編集:

xdotool getactivewindow windowmove 21% 0 windowsize 21% 70%

前のコマンドはウィンドウの位置とサイズを設定します

xrandr | grep connected | grep -v disconnected | egrep '[0-9]+x[0-9]++[0-9x+]*' -o

このコマンドはすべてのモニターのジオメトリを取得します

準備ができたら完全な回答を投稿します

答え1

以下は、 と の両方を使用して目的の作業を実行する bash スクリプトですxdotoolxrandr可能になったときやリクエストがあったときに、詳細や新しいバージョンを提供します。

これはコマンドラインから実行され、特定のキーの組み合わせが押されたときに実行を開始するようにウィンドウマネージャーで設定する必要があります。

first_monitor=`xrandr | grep connected | grep -v disconnected | egrep '[0-9]+x[0-9]++[0-9x+]*' -o | head -n 1`
#echo $first_monitor
number_monitors=`xrandr | grep connected | grep -v disconnected | egrep '[0-9]+x[0-9]++[0-9x+]*' -o | wc -l`
#echo $number_monitors

if [ $number_monitors -eq 2 ] 
then
   second_monitor=`xrandr | grep connected | grep -v disconnected | egrep '[0-9]+x[0-9]++[0-9x+]*' -o | tail -n 1`
fi
if [ $number_monitors -ne 2 ] 
then
   second_monitor='not there'
fi

size_first_monitor=`echo $first_monitor | awk 'BEGIN { FS="x" } { print $1 }'`
[ $second_monitor != 'not there' ] &&  size_second_monitor=`echo $second_monitor | awk 'BEGIN { FS="x" } { print $1 }'`

position_px=`xdotool getactivewindow getwindowgeometry | grep Position | awk '{print $2}' | awk 'BEGIN { FS="," } { print $1 }'`

position='outside'
(( $position_px < $size_first_monitor/2 )) && position='first_half_first_monitor'
(( $position_px >= $size_first_monitor/2 )) && (($position_px < $size_first_monitor)) && position='second_half_first_monitor'
if [ '$second_monitor' != 'not there' ] 
 then
 (( $position_px >= $size_first_monitor )) && (($position_px < $size_first_monitor+($size_second_monitor/2) )) && position='first_half_second_monitor'
 (($position_px >= $size_first_monitor+($size_second_monitor/2)  )) && position='second_half_second_monitor'
fi

height_first_monitor=`echo $first_monitor | awk 'BEGIN { FS="+" } { print $1 }'|awk 'BEGIN { FS="x" } { print $2 }'`
height_second_monitor=`echo $second_monitor | awk 'BEGIN { FS="+" } { print $1 }'|awk 'BEGIN { FS="x" } { print $2 }'`
height_first_monitor=$(( $height_first_monitor - 20 ))
height_second_monitor=$(( $height_second_monitor - 20 ))

first_position="xdotool getactivewindow windowmove 0 0 windowsize $(( $size_first_monitor/2 )) $height_first_monitor"
second_position="xdotool getactivewindow windowmove $(( $size_first_monitor/2 )) 0  windowsize $(( $size_first_monitor/2 )) $height_first_monitor"
third_position="xdotool getactivewindow windowmove $size_first_monitor 0  windowsize $(( $size_second_monitor/2 )) $height_second_monitor"
fourth_position="xdotool getactivewindow windowmove $(( $size_first_monitor + $size_second_monitor/2 )) 0 windowsize $(( $size_second_monitor/2 )) $height_second_monitor"

if [ "$1" == 'right' ]
then
   [ "$position" == 'first_half_second_monitor' ] && [ $second_monitor != 'not there' ]&& $fourth_position
   [ "$position" == 'second_half_first_monitor' ] && [ $second_monitor != 'not there' ]&& $third_position
   [ "$position" == 'first_half_first_monitor' ] && $second_position
fi

size_window=`xdotool getactivewindow  getwindowgeometry | grep Geometry | awk '{print $2}' | awk 'BEGIN { FS="x" } { print $1 }'`
if [ "$1" == 'left' ]
then
   [ "$position" == 'first_half_first_monitor' ] && $first_position
   [ "$position" == 'second_half_first_monitor' ] && $first_position
   [ "$position" == 'first_half_second_monitor' ] && [ $size_window != $size_second_monitor ] && $second_position
   [ "$position" == 'first_half_second_monitor' ] && [ $size_window == $size_second_monitor ] && $third_position
   [ "$position" == 'second_half_second_monitor' ] && $third_position
fi

echo $size_window
echo $size_second_monitor

max_first_monitor="xdotool getactivewindow windowmove 0 0  windowsize $size_first_monitor $height_first_monitor"
max_second_monitor="xdotool getactivewindow windowmove $size_first_monitor 0  windowsize $size_second_monitor $height_second_monitor"
if [ "$1" == 'maximize' ]
then
   [ "$position" == 'first_half_first_monitor' ] && $max_first_monitor
   [ "$position" == 'second_half_first_monitor' ] && $max_first_monitor
   [ "$position" == 'first_half_second_monitor' ] && $max_second_monitor
   [ "$position" == 'second_half_second_monitor' ] && $max_second_monitor
fi

関連情報