最近,我接触到了 Windows 7 上的屏幕调整功能,我发现它非常好用。它的工作原理如下:
monitor 1 monitor 2
------------------------- ----------------------------
| | | | | |
| | | | | |
| | | | | |
| 1 | 2 | | 3 | 4 |
| | | | | |
| | | | | |
| | | | | |
------------------------- ----------------------------
假设您在监视器 1 中打开了一个应用程序,当前处于焦点状态。
如果按下 mod4+up,它会在显示器 1 上全屏显示(也就是说,它覆盖区域 1 和 2)。
如果按下 mod4+left,它会在显示器 1 上半屏显示(即覆盖区域 1)。
如果按下 mod4+right,它会在显示器 1 上显示半屏(但现在它覆盖区域 2)。
再次按下 mod4+right,它会在显示器 2 上半屏显示(区域 3)
再次按下 mod4+right,它会在显示器 2 上半屏显示(区域 4)
再次按下 mod4+up,显示器 2(区域 3 和 4)将全屏显示
我的问题:我想使用独立于窗口管理器的三个程序来重现这种行为:
- 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 脚本,xdotool
可以xrandr
完成这项工作。如果可能/有人要求,我将提供更多详细信息/新版本。
它通过命令行执行其工作,并且必须在窗口管理器上进行配置,以便在按下某个组合键时开始运行
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