我想获得鼠标单击时的位置,然后将其作为2个变量在bash中释放。 像
press=( X Y )
release= ( X Y )
或
pressX
pressY
releaseX
releaseY
我该怎么做?
我已经尝试过
xinput list | grep -Po 'id=\K\d+(?=.*slave\s*pointer)' | xargs -P0 -n1 xinput test | awk '{print $2}'
但是我不知道如何正确处理输出...
答案 0 :(得分:0)
谢谢@gst!
这是我以后其他ppl的编辑版本
MOUSE_ID=$(xinput --list | grep -i -m 1 'mouse' | grep -o 'id=[0-9]\+' | grep -o '[0-9]\+')
STATE1=$(xinput --query-state $MOUSE_ID | grep 'button\[' | sort)
while true; do
sleep 0.2
STATE2=$(xinput --query-state $MOUSE_ID | grep 'button\[' | sort)
button=$(comm -13 <(echo "$STATE1") <(echo "$STATE2") | grep -Po "(?<=\=).*$")
STATE1=$STATE2
# if the mouse is clicked down - save the x and y coordinates into downX and downY
if [ "$button" = "down" ]; then eval $(xdotool getmouselocation --shell); downX=$X;downY=$Y; fi
# when the mouse is unclicked - save the x and y coordinates into upX and upY
# then exit the while loop
if [ "$button" = "up" ]; then eval $(xdotool getmouselocation --shell); upX=$X;upY=$Y; break; fi
done
编辑: 我把所有这些都报废了并用
slop=$(slop --padding=-1 --bordersize=2 -f "%x %y %w %h %g %i") || exit 1
read -r X Y W H G ID < <(echo $slop)
相反,因为slop
使得鼠标按下时光标无法选择文本等!