Answer the question
In order to leave comments, you need to log in
How to write output of xinput test $id command to variable?
I need to get the coordinates of the mouse cursor by an event (RMB),
and if they satisfy the given coordinates, located in the upper left corner of the monitor,
then perform some action/command.
I don't understand how
##получаю id мышки ,чтобы знать с кого спрашивать :))
id=$(xinput |grep -Po 'MOUSE.+id=\d{1,2}' | grep -Po '\d{1,2}') ;
echo $id ;
##фильтрую выхлоп xinput ,т.е вывожу только события по клику ПКМ.
xinput test $id | grep -P 'button.+3'
##теперь мне нужно это куда то записать (в переменную/файл) ,НЕ понимаю как это сделать???
##после проверить эту переменную/файл ,если не пустой ,т.е. был клик
##то получаю координаты мыши ,если они попали в заданные рамки ,то выполняю
if
;
then echo "Ура-а-а-а ЗарАботАлА" ;
fi
##удаляю/затираю переменную/файл
##и начинаю всё сначала
#!/bin/bash
##получаю id мышки ,чтобы знать с кого спрашивать :)
id=$(xinput |grep -Po 'MOUSE.+id=\d{1,2}' | grep -Po '\d{1,2}') ;
##бесконечный цикл с задержкой 0.7 сек.
while true; do sleep 0.7;
##проверка нажата ли кнопка мыши ПКМ
if ;
then
##получаю координаты мыши ,если они попали в заданные рамки 0<x<∞ 0<y<9
if ;
##то выполняю свой скрипт/команду
then my-script ;
fi
fi
done;
Answer the question
In order to leave comments, you need to log in
I didn’t understand what exactly “I don’t understand how” is expressed, but as I understand your plan works, but the problem is precisely in the described
Then so
into the variable
pressed_button=$(xinput test $id | grep -P 'button.+3')
echo $pressed_button
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question