我有两个显示器,我正在调用一个bash脚本将当前窗口移动到上面的监视器。下面是我的代码示例(我将变量名称更改为更具描述性)。
问题出在最后一个if语句if [[ $currentWindowPosition == "above" ]]
中。当我从上面的监视器中的终端和窗口调用脚本时,我得到:
currentWindowPosition=above!
The window will stay on this monitor
但是当我从键盘快捷键调用它(并将输出重定向到文件)时,我得到:
currentWindowPosition=above!
The current monitor is on the bottom
为什么?我也尝试过该测试的不同版本,但没有成功。提前谢谢。
yOfCurrentWindow=$(xwininfo -id $(xprop -root | awk '/_NET_ACTIVE_WINDOW\(WINDOW\)/{print $NF}') | grep "Absolute upper-left Y:" | cut -d: -f2)
yResolutionOfmonitor1=$(xrandr | awk '/ connected/ { print $3 }' | sed -n '1 p' | awk 'BEGIN{FS="x"} { print $2}' | awk 'BEGIN{FS="+"} {print $1}')
if [ $yOfCurrentWindow -lt $yResolutionOfmonitor1 ]
then currentWindowPosition="above"
else currentWindowPosition="below"
fi
echo "currentWindowPosition=$currentWindowPosition!"
if [[ $currentWindowPosition == "above" ]]
then echo "The window will stay on this monitor"
else echo "The current monitor is on the bottom"
fi
答案 0 :(得分:0)
Jdamian建议使用: 如果[“$ currentWindowPosition”=下面] 作品。注意单个等号。