View Single Post
Posts: 958 | Thanked: 483 times | Joined on May 2010
#45
i also found the following when watching for an out-going call to be connected. look for

Code:
dbus-monitor "type=signal, interface=org.freedesktop.Telepathy.Channel.Interface.Group, member=MembersChangedDetailed" |  
while read -r line; 
do
	if echo $line | grep "string \"Call answered\""; then
		/home/nemo/Vibrate
	fi
done
that should catch dbus events of calls being answered. hope it is useful to someone.,
 

The Following User Says Thank You to droll For This Useful Post: